.skills{
    height: 100%;
    overflow: hidden;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
        }

        .skills-container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .header {
            text-align: center;
        }

        .header h1 {
            color: #2d3748;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 10px;
        }

        .header .subtitle {
            color: #718096;
            font-size: 1.1rem;
        }

        .section-title {
            color: #2d3748;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
            padding-left: 20px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 30px;
            background: linear-gradient(135deg, #082E63, #3e5474);
            border-radius: 2px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .skill-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #082E63, #3e5474);
        }

        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .skill-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .skill-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
            color: white;
        }

        .skill-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin: 0;
        }

        .skill-description {
            color: #4a5568;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .skill-tag {
            background: linear-gradient(135deg, #082E63, #3e5474);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .experience-level {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .expert { background: #48bb78; color: white; }
        .advanced { background: #4299e1; color: white; }
        .intermediate { background: #ed8936; color: white; }
        .learning { background: #3e5474; color: white; }

        .java { background: linear-gradient(135deg, #f89820, #e76f00); }
        .javascript { background: linear-gradient(135deg, #f7df1e, #e6c200); }
        .dart { background: linear-gradient(135deg, #0175c2, #13b9fd); }
        .node { background: linear-gradient(135deg, #68a063, #3c5f37); }
        .flutter { background: linear-gradient(135deg, #02569b, #0396d1); }
        .angular { background: linear-gradient(135deg, #dd0031, #c3002f); }
        .database { background: linear-gradient(135deg, #336791, #2d5a87); }
        .tools { background: linear-gradient(135deg, #6c757d, #495057); }

        @media (max-width: 768px) {
            .skills-container {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }