        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
       font-family: Poppins;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
            color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .left-column {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .skills-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .programming-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .soft-skills-section {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .skill-item {
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 0.6s ease forwards;
        }

        .skill-item:nth-child(2) { animation-delay: 0.1s; }
        .skill-item:nth-child(3) { animation-delay: 0.2s; }
        .skill-item:nth-child(4) { animation-delay: 0.3s; }
        .skill-item:nth-child(5) { animation-delay: 0.4s; }
        .skill-item:nth-child(6) { animation-delay: 0.5s; }

        .programming-section .skill-item:nth-child(2) { animation-delay: 0.8s; }
        .programming-section .skill-item:nth-child(3) { animation-delay: 0.9s; }
        .programming-section .skill-item:nth-child(4) { animation-delay: 1.0s; }
        .programming-section .skill-item:nth-child(5) { animation-delay: 1.1s; }

        .skill-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .skill-icon {
            margin-right: 15px;
            font-size: 24px;
            width: 40px;
            text-align: center;
            color: yellow;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        #i{
            color: orangered;
        }
        #ii{
            color: purple;
        }

        .skill-icon:hover {
            color: #ff6b6b;
            transform: scale(1.2) rotate(5deg);
        }

        

        .skill-name {
            flex: 1;
            font-size: 18px;
            font-weight: 500;
        }

        .skill-percentage {
            font-size: 16px;
            font-weight: bold;
            color: white;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #00d4ff, #4ecdc4);
            border-radius: 10px;
            width: 0%;
            transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .circular-skills {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .circular-skill {
            text-align: center;
            opacity: 0;
            transform: scale(0.8);
            animation: scaleIn 0.8s ease forwards;
        }

        .circular-skill:nth-child(1) { animation-delay: 0.2s; }
        .circular-skill:nth-child(2) { animation-delay: 0.4s; }
        .circular-skill:nth-child(3) { animation-delay: 0.6s; }
        .circular-skill:nth-child(4) { animation-delay: 0.8s; }

        .circle-container {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
        }

        .circle-bg, .circle-progress {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .circle-bg {
            background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        }

        .circle-progress {
            background: conic-gradient(from -90deg, #00d4ff 0deg, #ff6b6b 180deg, transparent 180deg);
            mask: radial-gradient(circle at center, transparent 65%, black 65%);
            transform: rotate(0deg);
            transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .circle-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        .skill-label {
            font-size: 16px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        

        .glowing-border {
            position: relative;
            overflow: hidden;
        }

        .glowing-border::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            background-size: 200% 200%;
            border-radius: 22px;
            z-index: -1;
            animation: borderGlow 3s ease infinite;
        }

        @keyframes borderGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .left-column {
                gap: 20px;
            }
            
            .skills-section, .programming-section, .soft-skills-section {
                padding: 20px;
            }
            
            .circular-skills {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }