html{
    font-family: IBM Plex Mono;
    /* background-color: ;
    color: black; */

}

#header{
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}
.skills-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.skills-section h3 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.skills-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00a1ff);
    transition: width 0.6s ease;
}

.skills-section h3:hover::after {
    width: 100%;
}

.skills-section > p {
    color: #cccccc;
    margin-bottom: 40px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.skill-category:hover::before {
    left: 100%;
}

.skill-category:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.skill-category h4 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    position: relative;
    padding-bottom: 10px;
}

.skill-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00a1ff);
    transition: width 0.3s ease;
}

.skill-category:hover h4::after {
    width: 100%;
}

.skill-category p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-category {
    animation: fadeIn 0.6s ease forwards;
}

.skill-category:nth-child(2) {
    animation-delay: 0.2s;
}

.skill-category:nth-child(3) {
    animation-delay: 0.4s;
}

.skill-category:nth-child(4) {
    animation-delay: 0.6s;
}

.skill-category:nth-child(5) {
    animation-delay: 0.8s;
}

<!--Experience Section-->

