 :root {
            --primary-bg: linear-gradient(135deg, #0a0a2a, #1a1a4a, #2a2a5a);
            --secondary-bg: linear-gradient(125deg, rgba(30, 20, 60, 0.8), rgba(40, 30, 80, 0.6));
            --header-bg: linear-gradient(125deg, rgba(10, 5, 30, 0.95), rgba(20, 10, 50, 0.9));
            --text-color: #e0e0ff;
            --accent-color: #a0c0ff;
            --accent-color-2: #ff9a9e;
            --card-bg: rgba(20, 15, 45, 0.6);
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            --glow: 0 0 15px rgba(160, 192, 255, 0.5);
            --transition-slow: 0.5s ease;
            --transition-fast: 0.3s ease;
        }

        .light-mode {
            --primary-bg: linear-gradient(135deg, #e0e0ff, #c0c0ff, #a0a0ff);
            --secondary-bg: linear-gradient(125deg, rgba(200, 200, 255, 0.8), rgba(180, 180, 255, 0.6));
            --header-bg: linear-gradient(125deg, rgba(150, 150, 255, 0.95), rgba(130, 130, 255, 0.9));
            --text-color: #1a1a4a;
            --accent-color: #4a4aff;
            --accent-color-2: #ff6b6b;
            --card-bg: rgba(255, 255, 255, 0.233);
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            --glow: 0 0 15px rgba(74, 74, 255, 0.5);
        }

        * {
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: background-color var(--transition-slow), color var(--transition-fast);
            cursor: none;
        }

        body {
            background: var(--primary-bg);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* 3D Star Background */
        .star-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            perspective: 1000px;
            overflow: hidden;
        }

        .stars-container {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            animation: rotateStars 120s infinite linear;
        }

        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            opacity: 0.8;
        }

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

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-color);
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.2s ease;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 4px solid var(--accent-color-2);
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.9s ease, border-color 2s ease;
            animation: pulse 5s infinite alternate;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            100% {
                transform: scale(1.1);
                opacity: 0.4;
            }
        }

        /* Advanced Particle Background */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent-color), transparent);
            animation: particleFloat 20s infinite ease-in-out;
            opacity: 0.7;
        }

        @keyframes particleFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.7;
            }
            25% {
                transform: translate(100px, -50px) scale(1.2);
                opacity: 1;
            }
            50% {
                transform: translate(-80px, 80px) scale(0.8);
                opacity: 0.5;
            }
            75% {
                transform: translate(-100px, -30px) scale(1.1);
                opacity: 0.9;
            }
        }

        /* Advanced Header with Glass Morphism */
        .header {
            height: 80px;
            color: var(--text-color);
            background: var(--header-bg);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 1000;
            box-shadow: var(--shadow);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-left img {
            border: 2px solid rgba(100, 150, 255, 0.5);
            border-radius: 50%;
            width: 55px;
            height: 55px;
            box-shadow: var(--glow);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        }

        .header-left img:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 20px rgba(160, 192, 255, 0.8);
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-color-2), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .theme-toggle {
            background: var(--card-bg);
            border: none;
            width: 55px;
            height: 28px;
            border-radius: 25px;
            position: relative;
            cursor: none;
            display: flex;
            align-items: center;
            padding: 0 5px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .theme-toggle::before {
            content: '';
            position: absolute;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--accent-color);
            transition: transform var(--transition-fast);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        }

        .light-mode .theme-toggle::before {
            transform: translateX(27px);
            background: var(--accent-color-2);
        }

        .theme-toggle i {
            font-size: 13px;
            z-index: 1;
        }

        .theme-toggle .fa-sun {
            color: #ffd700;
        }

        .theme-toggle .fa-moon {
            color: #f0f0ff;
            margin-left: auto;
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            cursor: none;
            width: 36px;
            height: 25px;
            justify-content: space-between;
            position: relative;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            height: 4px;
            width: 100%;
            background: var(--accent-color);
            border-radius: 3px;
            transition: all var(--transition-fast);
            transform-origin: center;
        }
        .span1{
            width: 18px !important;
            margin-left: auto;
        }
      
        .span2{
            width: 26px !important;
             margin-left: auto;

        }
      
        .span3{
            width: 36px !important;
 
        }
      
        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--header-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            padding: 100px 30px 30px;
            transition: right var(--transition-slow);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.3rem;
            margin: 15px 0;
            padding: 15px 20px;
            border-radius: 12px;
            transition: all var(--transition-fast);
            background: var(--glow);
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .nav-menu a:hover::before {
            left: 100%;
        }

        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            color: var(--text-color);
            font-size: 1.8rem;
            cursor: none;
            background: var(--card-bg);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow);
        }

        .close-menu:hover {
            transform: rotate(90deg);
            background: rgba(255, 100, 100, 0.2);
        }

        /* Enhanced Hero Section */
        .hero {
            height: 320px;
            color: var(--text-color);
            background: var(--secondary-bg);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px;
            z-index: 1;
            margin: 100px 40px 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(100, 150, 255, 0.2);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(160, 192, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

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

        .hero-left {
            width: 65%;
            z-index: 2;
        }

        .hero-left h2 {
            font-weight: 900;
            font-size: 50px;
            background: linear-gradient(90deg, var(--accent-color-2), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-right {
            font-weight: 560;
            font-size: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: left;
            z-index: 2;
                  position: absolute;
                right: 70px;
                top: 85px;
                font-size: 70px;
            }

        

        .hero-right i {
            background: linear-gradient(135deg, var(--accent-color-2), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 15px rgba(255, 154, 158, 0.7));
            transition: all var(--transition-slow) ease;
            animation: pulse 3s infinite ease-in-out;
        }
        .hero-left p {
            font-weight: 560;
            font-size: 22px;
            text-align: justify;
            color: var(--text-color);
            line-height: 1.8;
        }


        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .hero-right i:hover {
            transform: scale(1.2);
            animation: none;
        
        }

        /* Enhanced Center Star */
        .center-star {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            position: relative;
        }

        .center-star::before, .center-star::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        }

        .center-star::before {
            left: 0;
        }

        .center-star::after {
            right: 0;
        }

        .center-star i {
            font-size: 550%;
            background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 20px rgba(160, 192, 255, 0.8));
            transition: all var(--transition-slow);
            cursor: none;
            z-index: 2;
            position: relative;
        }

        .center-star i:hover {
            transform: rotate(360deg) scale(1.3);
            filter: drop-shadow(0 0 30px rgba(160, 192, 255, 1));
        }

        /* Enhanced Boxes Section */
        .boxes {
            display: flex;
            margin: 40px;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .box1, .box2 {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            padding: 12px;
            width: 190px;
            height: 190px;
            border-radius: 40px;
            border: 3px solid rgba(100, 150, 255, 0.5);
            background: var(--card-bg);
            transition: all var(--transition-slow);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .box1::before, .box2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .box1:hover::before, .box2:hover::before {
            transform: translateX(100%);
        }

        .box1:hover, .box2:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: rgba(160, 192, 255, 0.8);
        }

        .box1-part1, .box1-part2, .box2-part1, .box2-part2 {
            display: flex;
            width: 100%;
            z-index: 2;
        }

        .box1-part1, .box2-part2 {
            justify-content: flex-start;
        }

        .box1-part2, .box2-part1 {
            justify-content: flex-end;
        }

        .box1 img, .box2 img {
            width: 75px;
            border-radius: 20px;
            transition: transform var(--transition-fast);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .box1 img:hover, .box2 img:hover {
            transform: scale(1.15) rotate(5deg);
        }

        /* Enhanced Skills Section */
        .skills-section {
            margin: 80px 40px;
            padding: 40px;
            background: var(--secondary-bg);
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(100, 150, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .skills-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color-2), var(--accent-color));
        }

        .skills-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 40px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .skills-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            border-radius: 3px;
        }

        .skills-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 25px;
        }

        .skill-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 110px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 20px;
            transition: all var(--transition-fast);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .skill-item:hover::before {
            transform: translateX(100%);
        }

        .skill-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .skill-icon {
            font-size: 45px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
        }

        .skill-name {
            font-size: 15px;
            text-align: center;
            color: var(--text-color);
            font-weight: 600;
        }

        /* Enhanced Projects Section */
        .projects-section {
            margin: 80px 40px;
            padding: 40px;
            background: var(--secondary-bg);
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(100, 150, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
        }

        .projects-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 40px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .projects-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            border-radius: 3px;
        }

        .projects-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .project-card {
            width: 280px;
            padding: 25px;
            background: var(--card-bg);
            border-radius: 20px;
            transition: all var(--transition-fast);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .project-card:hover::before {
            transform: translateX(100%);
        }

        .project-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .project-icon {
            font-size: 55px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent-color-2), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
        }

        .project-name {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--text-color);
            font-weight: 700;
        }

        .project-desc {
            font-size: 14px;
            color: var(--text-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .project-link {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            color: #0a0a2a;
            text-decoration: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            transition: all var(--transition-fast);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .project-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-color-2), var(--accent-color));
            opacity: 0;
            transition: opacity var(--transition-fast);
            z-index: -1;
        }

        .project-link:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(160, 192, 255, 0.5);
        }

        .project-link:hover::before {
            opacity: 1;
        }

        /* Enhanced Project Preview Section */
        .project-preview-section {
            margin: 80px 40px;
            padding: 40px;
            background: var(--secondary-bg);
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(100, 150, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .project-preview-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
        }

        .preview-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 40px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .preview-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            border-radius: 3px;
        }

        .preview-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .preview-item {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all var(--transition-fast);
            position: relative;
        }

        .preview-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .preview-header {
            padding: 18px 25px;
            background: rgba(0, 0, 0, 0.25);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .preview-title-text {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-color);
        }

        .preview-controls {
            display: flex;
            gap: 12px;
        }

        .preview-control {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            cursor: none;
            transition: transform var(--transition-fast);
        }

        .preview-control:hover {
            transform: scale(1.2);
        }

        .preview-control.close {
            background: #ff5f57;
        }

        .preview-control.minimize {
            background: #ffbd2e;
        }

        .preview-control.maximize {
            background: #28ca42;
        }

        .preview-frame-container {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
        }

        .preview-frame {
            width: 100%;
            height: 100%;
            border: none;
            background: white;
            transition: all var(--transition-fast);
        }

        .preview-frame.fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 2000;
        }

        .preview-footer {
            padding: 15px 25px;
            background: rgba(0, 0, 0, 0.25);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .preview-link {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
            color: #0a0a2a;
            text-decoration: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            transition: all var(--transition-fast);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .preview-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-color-2), var(--accent-color));
            opacity: 0;
            transition: opacity var(--transition-fast);
            z-index: -1;
        }

        .preview-link:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(160, 192, 255, 0.5);
        }

        .preview-link:hover::before {
            opacity: 1;
        }

        .preview-tech {
            font-size: 14px;
            color: var(--text-color);
            font-weight: 600;
            text-align: right;
        }

        /* Enhanced Contact Section */
        .rapid {
            border-right: rgba(100, 150, 255, 0.5) solid 5px;
            border-radius: 25px;
            margin: 60px auto;
            position: relative;
            width: fit-content;
            overflow: hidden;
        }

        .rapid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .rapid:hover::before {
            transform: translateX(100%);
        }

        .rapid-show {
            position: relative;
            width: 350px;
            height: 350px;
            overflow: hidden;
            margin: 40px;
            border-radius: 25px;
            box-shadow: var(--shadow);
        }

        /* Triangle background */
        .rapid-show::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 100, 100, 0.342), rgba(255, 150, 150, 0.247));
            clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
            z-index: 1;
            border-radius: 25px;
        }

        /* GitHub link bottom-left */
        .rapid-show .github {
            position: absolute;
            bottom: 15px;
            left: 20px;
            color: #fff;
            text-decoration: none;
            z-index: 2;
            font-size: 50px;
            font-weight: bold;
            transition: var(--transition-fast);
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
        }

        .rapid-show .github:hover {
            color: #ffdd99;
            transform: scale(1.3) rotate(10deg);
        }

        /* Triangle links on right side (~45% height) */
        .triangle-links {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 2;
        }

        .triangle-links .whatsapp {
            position: absolute;
            top: 90px;
            left: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 50px;
            z-index: 2;
        }

        .triangle-links .instagram {
            position: absolute;
            top: 160px;
            left: 110px;
            font-size: 50px;
            z-index: 2;
        }

        .triangle-links .email {
            position: absolute;
            bottom: 20px;
            right: 95px;
            font-size: 50px;
            z-index: 2;
        }

        .triangle-links a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition-fast);
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
        }

        .triangle-links a:hover {
            color: #ffdd99;
            transform: scale(1.3) rotate(5deg);
        }

        .slide-arrow {
            position: absolute;
            top: 35px;
            right: 35px;
            font-size: 350%;
            color: rgba(160, 192, 255, 0.8);
            cursor: none;
            transition: transform var(--transition-fast);
            z-index: 3;
        }

        .slide-arrow:hover {
            transform: translateX(-15px);
            color: rgba(200, 220, 255, 1);
        }

        /* Enhanced Footer */
        .footer {
            margin-top: 80px;
            padding: 30px;
            text-align: center;
            background: var(--header-bg);
            color: var(--text-color);
            font-size: 16px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color-2), var(--accent-color));
        }

        .footer p {
            margin: 0;
            position: relative;
            z-index: 2;
        }


/* 🌊 Fish Marquee Styling */
.finisher-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1500px;
  margin: 60px auto;
  overflow: hidden;
  position: relative;
}

/* 🐟 Left static fish */
.fish-left {

    margin-left: 20px;
  flex-shrink: 0;
  animation: fishSwim 2s ease-in-out infinite alternate;
}

@keyframes fishSwim {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-5px) rotate(3deg);
  }
}

/* 🌈 Marquee setup */
.marquee-wrapper {
  overflow: hidden;
  flex: 1;
}

.marquee-container {
  display: flex;
  width: max-content;
  animation: marqueeLeft 15s linear infinite;
}

/* 🎯 Fish items */
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  transition: all 0.3s ease;
}
.marquee-item:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px var(--accent-color));
}

/* 💫 Move left to right (reversed direction) */
@keyframes marqueeLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

        /* Advanced Responsive Design */
        @media (max-width: 1200px) {
            .hero {
                height: auto;
                flex-direction: column;
                text-align: center;
                margin: 100px 30px 30px;
            }

            .hero-left {
                width: 100%;
                margin-bottom: 30px;
            }

            .boxes {
                justify-content: center;
                gap: 40px;
                margin: 30px;
            }

            .preview-frame-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
                height: 70px;
            }
              .cursor, .cursor-follower{
                display: none;
              }
            .header-left img {
                width: 45px;
                height: 45px;
            }

            .logo-text {
                font-size: 1.3rem;
            }

            .hero {
                margin: 90px 20px 20px;
                padding: 25px;
            }

            .hero-left h2 {
                font-size: 35px;
                text-align: left;
            }
               .hero-right {
                  position: absolute;
                right: 40px;
                top: 60px;
                font-size: 50px;
            }

            .hero-left p {
                font-size: 18px;
            }

          
            .center-star i {
                font-size: 450%;
            }

            .boxes {
                margin: 20px;
                gap: 30px;
            }

            .box1, .box2 {
                width: 160px;
                height: 160px;
            }

            .box1 img, .box2 img {
                width: 65px;
            }

            .skills-section, .projects-section, .project-preview-section {
                margin: 60px 20px;
                padding: 30px;
            }

            .preview-frame-container {
                height: 300px;
            }

            .rapid-show {
                width: 300px;
                height: 300px;
            }

            .triangle-links .whatsapp {
                top: 80px;
                left: 25px;
                font-size: 45px;
            }

            .triangle-links .instagram {
                top: 138px;
                left: 95px;
                font-size: 45px;
            }

            .triangle-links .email {
                bottom: 10px;
                right: 86px;
                font-size: 45px;
            }

            .rapid-show .github {
                font-size: 45px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 0 15px;
            }

            .header-left {
                gap: 10px;
            }

            .header-left img {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 1.1rem;
            }

            .hero {
                margin: 80px 15px 15px;
                padding: 20px;
            }

            .hero-left h2 {
                font-size: 30px;
                text-align: left;
            }

            .hero-right {
                font-size: 40px;
                position: absolute;
                right: 20px;
                top: 50px;
            }

            .hero-left p {
                font-size: 14.5px;
            }

            .center-star i {
                font-size: 350%;
            }

            .boxes {
                margin: 15px;
                gap: 20px;
            }

            .box1, .box2 {
                width: 140px;
                height: 140px;
                border-radius: 30px;
            }

            .box1 img, .box2 img {
                width: 55px;
            }

            .skill-icon {
                font-size: 35px;
            }

            .project-icon {
                font-size: 45px;
            }

            .preview-frame-container {
                height: 250px;
            }

            .preview-header, .preview-footer {
                padding: 12px 15px;
            }

            .preview-title-text {
                font-size: 16px;
            }

            .rapid-show {
                width: 250px;
                height: 250px;
                margin: 20px;
            }

            .triangle-links .whatsapp {
                top: 65px;
                left: 20px;
                font-size: 40px;
            }

            .triangle-links .instagram {
                top: 115px;
                left: 80px;
                font-size: 40px;
            }

            .triangle-links .email {
                bottom: 10px;
                right: 72px;
                font-size: 40px;
            }

            .rapid-show .github {
                font-size: 40px;
            }

            .slide-arrow {
                top: 25px;
                right: 25px;
                font-size: 300%;
            }
        }

        /* Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: var(--accent-color);
            animation: spin 1s linear infinite;
        }

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

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--card-bg);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-color);
            font-size: 20px;
            cursor: none;
            box-shadow: var(--shadow);
            transition: all var(--transition-fast);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background: var(--accent-color);
            color: #0a0a2a;
            transform: translateY(-5px);
        }
