       @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, sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  scroll-behavior: smooth;
}
/* Color Palette */
:root {
  --dark-bg: #0a1f44;
  --mid-bg: #1f326b;
  --light-bg: #3e5c8c;
  --accent: #54a0ff;
  --white: #ffffff;
}

        .container {
            max-width: 1200px;
            margin: 1rem 1rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .skills-section {
            background: rgba(30, 30, 60, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .skill-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideIn 0.8s ease forwards;
        }

        .skill-item:nth-child(2) { animation-delay: 0.2s; }
        .skill-item:nth-child(3) { animation-delay: 0.4s; }
        .skill-item:nth-child(4) { animation-delay: 0.6s; }
        .skill-item:nth-child(5) { animation-delay: 0.8s; }
        .skill-item:nth-child(6) { animation-delay: 1.0s; }
        .skill-item:nth-child(7) { animation-delay: 1.2s; }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .skill-icon {
            width: 40px;
            height: 40px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .skill-icon svg {
            color: white;
            width: 24px;
            height: 24px;
        }

        .gaming-icon { background: linear-gradient(45deg, #000000, #ffffff); }
        .drawing-icon { background: linear-gradient(45deg, #ff1744, #e91e63); }
        .code-icon { background: linear-gradient(45deg, #4a90e2, #7b68ee); }
        .speaking-icon { background: linear-gradient(45deg, #9c27b0, #673ab7); }
        .typing-icon { background: linear-gradient(45deg, #ffd700, #ffb300); }
        .html-icon { background: linear-gradient(45deg, #e34c26, #f06529); }
        .css-icon { background: linear-gradient(45deg, #1572b6, #33a9dc); }
        .js-icon { background: linear-gradient(45deg, #f7df1e, #f0db4f); }
        .php-icon { background: linear-gradient(45deg, #777bb4, #8892bf); }
        .gaming-icon:hover { 
            background: linear-gradient(45deg, #ff8a8a, #0f0f2b);
            animation: pulseGaming 0.6s ease-in-out;
        }
        .drawing-icon:hover { 
            background: linear-gradient(45deg, #ff4569, #ff8fab);
            animation: pulseDrawing 0.6s ease-in-out;
        }
        .code-icon:hover { 
            background: linear-gradient(45deg, #6bb6ff, #9d7fff);
            animation: pulseCode 0.6s ease-in-out;
        }
        .speaking-icon:hover { 
            background: linear-gradient(45deg, #c44ede, #8e67f7);
            animation: pulseSpeaking 0.6s ease-in-out;
        }
        .typing-icon:hover { 
            background: linear-gradient(45deg, #ffed4a, #ffd93d);
            animation: pulseTyping 0.6s ease-in-out;
        }
        .html-icon:hover { 
            background: linear-gradient(45deg, #ff6b47, #ff8c69);
            animation: pulseHtml 0.6s ease-in-out;
        }
        .css-icon:hover { 
            background: linear-gradient(45deg, #3d9cdb, #5db4e8);
            animation: pulseCss 0.6s ease-in-out;
        }
        .js-icon:hover { 
            background: linear-gradient(45deg, #ffeb3b, #fff176);
            animation: pulseJs 0.6s ease-in-out;
        }
        .php-icon:hover { 
            background: linear-gradient(45deg, #9c88d4, #b19cd9);
            animation: pulsePhp 0.6s ease-in-out;
        }
        .python-icon:hover { 
            background: linear-gradient(45deg, #4e9ad9, #ffed4a);
            animation: pulsePython 0.6s ease-in-out;
        }

        @keyframes pulseGaming {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulseDrawing {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulseCode {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulseSpeaking {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulseTyping {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulseHtml {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulseCss {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulseJs {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulsePhp {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }
        @keyframes pulsePython {
            0%, 100% { transform: scale(1.15) rotate(5deg); }
            50% { transform: scale(1.25) rotate(-3deg); }
        }

        .skill-content {
            flex: 1;
        }

        .skill-name {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .skill-percentage {
            font-size: 14px;
            color: #00ffff;
            font-weight: 600;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            animation: fillBar 2s ease-out forwards;
            transform-origin: left;
            transform: scaleX(0);
        }

        .technical-skills .progress-fill {
            animation: fillBarSlow 3.5s ease-out forwards;
        }

        @keyframes fillBar {
            to {
                transform: scaleX(1);
            }
        }

        @keyframes fillBarSlow {
            to {
                transform: scaleX(1);
            }
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .gaming-bar { background: linear-gradient(90deg, #00ffff, #0080ff); }
        .drawing-bar { background: linear-gradient(90deg, #ff1744, #ff6b6b); }
        .programming-bar { background: linear-gradient(90deg, #4a90e2, #7b68ee); }
        .speaking-bar { background: linear-gradient(90deg, #9c27b0, #e91e63); }
        .typing-bar { background: linear-gradient(90deg, #ffd700, #ffb300); }
        .html-bar { background: linear-gradient(90deg, #e34c26, #f06529); }
        .css-bar { background: linear-gradient(90deg, #1572b6, #33a9dc); }
        .js-bar { background: linear-gradient(90deg, #f7df1e, #f0db4f); }
        .php-bar { background: linear-gradient(90deg, #777bb4, #8892bf); }
        .python-bar { background: linear-gradient(90deg, #3776ab, #ffd43b); }

        .circular-skills {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .circular-skill {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: scale(0.8);
            animation: fadeInScale 1s ease forwards;
        }

        .circular-skill:nth-child(1) { animation-delay: 0.5s; }
        .circular-skill:nth-child(2) { animation-delay: 0.7s; }
        .circular-skill:nth-child(3) { animation-delay: 0.9s; }
        .circular-skill:nth-child(4) { animation-delay: 1.1s; }

        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .circular-progress {
            position: relative;
            width: 120px;
            height: 120px;
            margin-bottom: 15px;
        }

        .circular-progress svg {
            transform: rotate(-90deg);
            width: 100%;
            height: 100%;
        }

        .circular-progress .bg-circle {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 8;
        }

        .circular-progress .progress-circle {
            fill: none;
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 314;
            stroke-dashoffset: 314;
            animation: drawCircle 2s ease-out forwards;
        }

        @keyframes drawCircle {
            to {
                stroke-dashoffset: var(--dash-offset);
            }
        }

        .responsibility-circle { stroke: url(#gradient1); }
        .creativity-circle { stroke: url(#gradient2); }
        .communication-circle { stroke: url(#gradient3); }
        .teamwork-circle { stroke: url(#gradient4); }

        .circular-percentage {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 18px;
            font-weight: 700;
            color: #00ffff;
        }

        .circular-label {
            font-size: 16px;
            font-weight: 500;
            text-align: center;
            color: white;
        }
        
.back {
    display: flex;
    justify-content: center;
    align-items: center;
  text-align: center;
  margin-top: 20px;
margin-bottom: 20px;
}

        .button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.button:hover {
  background: linear-gradient(135deg, #0629c3, #306f99); /* Darker gradient on hover */
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgb(8, 116, 239);
}

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .circular-skills {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
