        @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
        
        * {
            box-sizing: border-box;
            padding: 0;
            margin: 0;
            font-family: "Poppins", sans-serif;
            text-decoration: none;
            list-style: none;
        }

        body {
            background-color: #f7f7f2;
            color: #1e1e24;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem 8rem;
            background-color: rgba(247, 247, 242, 0.95);
        }

        .logo {
            color: #1e1e24;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .navmenu {
            display: flex;
        }

        .navmenu a {
            display: inline-block;
            margin: 0 1.5rem;
            color: #1e1e24;
            font-weight: 500;
            transition: all 0.6s;
        }

        .navmenu a:hover {
            transform: translateY(-5px);
        }

        /* Home Section */
        .home {
            width: 100%;
            min-height: 100vh;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: center;
            padding: 2rem 5rem 0 18rem;
            gap: 1rem;
        }

        .home-img {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-container {
            position: relative;
            width: 350px;
            height: 350px;
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #e0e0d8;
            border: 3px solid #1e1e24;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(30, 30, 36, 0.2);
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-placeholder {
            font-size: 80px;
            color: #999;
        }

        .upload-btn {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: #1e1e24;
            color: #f7f7f2;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(30, 30, 36, 0.4);
            transition: all 0.3s;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .upload-btn:hover {
            background: #2e2e34;
            transform: scale(1.1);
        }

        #imageInput {
            display: none;
        }

        .home-text h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .home-text h3 {
            position: relative;
            padding-left: 6rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .home-text h3::before {
            content: "";
            position: absolute;
            width: 80px;
            height: 2px;
            background-color: #1e1e24;
            left: 0;
            top: 1rem;
        }

        .home-text p {
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .home-btn {
            display: flex;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: fit-content;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            cursor: pointer;
            color: #f7f7f2;
            border: 1px solid #1e1e24;
            font-weight: 500;
            font-size: 14px;
            text-align: center;
            background: #1e1e24;
            transition: all 0.5s;
        }

        .btn:hover {
            background: #f7f7f2;
            color: #1e1e24;
            transform: translateY(-5px);
        }

        /* Social Icons */
        .socials-icons {
            position: fixed;
            top: 40%;
            left: 8rem;
            z-index: 100;
        }

        .socials-icons a {
            display: block;
            margin: 25px 0;
            color: #1e1e24;
            font-size: 1.5rem;
            transition: all 0.6s;
        }

        .socials-icons a:hover {
            transform: rotate3d(0, 0, 1, 90deg);
        }

        /* Scroll Button */
        .scroll-btn {
            position: fixed;
            bottom: 7%;
            left: 9%;
            color: #1e1e24;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Skills Section */
        .skills-section {
            min-height: 100vh;
            padding: 8rem 8rem 4rem;
            background: #fff;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .skills-grid {
            display: grid;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto 4rem;
        }

        .skill-card {
            background: #f7f7f2;
            padding: 2rem;
            border-radius: 1rem;
            border: 2px solid #e0e0d8;
            transition: all 0.3s;
        }

        .skill-card:hover {
            border-color: #1e1e24;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(30, 30, 36, 0.1);
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .skill-name {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .skill-level {
            color: #666;
            font-weight: 500;
        }

        .progress-bar {
            width: 100%;
            height: 10px;
            background: #e0e0d8;
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: #1e1e24;
            border-radius: 10px;
            transition: width 1.5s ease-out;
        }

        /* Additional Skills */
        .extra-skills {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .extra-card {
            background: #f7f7f2;
            padding: 2.5rem;
            border-radius: 1rem;
            border: 2px solid #e0e0d8;
            transition: all 0.3s;
        }

        .extra-card:hover {
            border-color: #1e1e24;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(30, 30, 36, 0.1);
        }

        .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .extra-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .description {
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 1200px) {
            header {
                padding: 2rem 4rem;
            }
            .home {
                padding: 2rem 4rem;
                grid-template-columns: 1fr;
            }
            .socials-icons {
                left: 2rem;
            }
            .skills-section {
                padding: 8rem 4rem 4rem;
            }
        }
