         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0a1a;
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
            text-align:center;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(20, 40, 80, 0.6) 0%, rgba(0, 0, 0, 0) 50%),
                        radial-gradient(circle at 90% 80%, rgba(0, 50, 100, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
            z-index: -1;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background-color: rgba(10, 15, 30, 0.8);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 100, 200, 0.3);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4a9eff;
            text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: #4a9eff;
            background: rgba(74, 158, 255, 0.1);
            box-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-height: 80vh;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #4a9eff, #00c3ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(74, 158, 255, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin-bottom: 3rem;
            color: #c2d6f9;
        }

   .skills-container {
            background: rgba(15, 25, 45, 0.3);
            border-radius: 15px;
            padding: 2.5rem;
            margin-top: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(74, 158, 255, 0.2);
        }

        .skills-title {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 1.8rem;
            color: #4a9eff;
            text-shadow: 0 0 10px rgba(74, 158, 255, 0.4);
        }

        .skills {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .skill {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
            padding: 1.5rem;
            border-radius: 10px;
            background: rgba(15, 25, 45, 0.5);
            width: 180px;
        }

        .skill i {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            color: #4a9eff;
            transition: all 0.3s ease;
        }

        .skill-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #a0c8ff;
        }

        .skill-image {
         margin-bottom: 1rem;
        }

        .skill-level {
            font-size: 0.9rem;
            color: #88bbff;
            text-align: center;
        }

        .skill:hover {
            transform: scale(1.15);
            box-shadow: 0 0 25px rgba(74, 158, 255, 0.5);
            background: rgba(20, 35, 60, 0.7);
        }

        .skill:hover i {
            text-shadow: 0 0 20px rgba(74, 158, 255, 0.9);
            color: #60afff;
        }

        .projects-container {
            padding: 4rem 15rem;
        }

        .project {
            display: flex;
            margin-bottom: 5rem;
            align-items: center;
            background: rgba(15, 25, 45, 0.5);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .project:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 100, 200, 0.3);
        }

        .project:nth-child(even) {
            flex-direction: row-reverse;
        }

         .project-img {
            width: 700px;
            height: 500px; 
            background-color: #152544;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
            flex-shrink: 0; 
        }

            .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

    
        .project-img:hover {
            box-shadow: 0 0 25px rgba(74, 158, 255, 0.6);
        }

        .project-info {
            flex: 1;
            padding: 2rem;
        }

        .project-info h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #4a9eff;
        }

        .project-info p {
            color: #b0c9ff;
            line-height: 1.6;
        }

        .project-link {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.7rem 1.5rem;
            background: rgba(74, 158, 255, 0.2);
            color: #4a9eff;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            background: rgba(74, 158, 255, 0.3);
            box-shadow: 0 0 15px rgba(74, 158, 255, 0.4);
        }

        footer {
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(0, 100, 200, 0.3);
            color: #6a93cc;
        }

           .icon-row {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 900px) {
            .project, .project:nth-child(even) {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .projects-header h1 {
                font-size: 2.2rem;
            }
            
            .skills {
                gap: 2rem;
            }
            
            .skill {
                width: 140px;
                padding: 1rem;
            }
            
            .skill i {
                font-size: 3.5rem;
            }
            
            .project-img {
                width: 100%;
                height: 350px;
            }
            
            .projects-container {
                padding: 1rem;
            }
            
            .container {
                padding: 1rem;
            }
            
            .hero {
                padding: 1rem;
            }
        }

        @media (max-width: 600px) {

            .projects-container {
                padding: 0.5rem;
            }
            
            .project-info {
                padding: 1.5rem;
            }
            
            .project-info h2 {
                font-size: 1.7rem;
            }
            
            .nav-links {
                gap: 1rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
        }