* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}


::-webkit-scrollbar {
    width: 12px;
    background-color: #111;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #111;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: white;
}

body {
    background: url('dot.png') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.glass-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 30px;
    flex: 1 1 450px;
    min-height: 550px;
    color: #e2e8f0;
}

.avatar {
    text-align: center;
    margin-bottom: 20px;
}

.avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 2rem;
    margin-top: 10px;
    color: #fff;
    text-align: center;
}

h2 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: #fff;
}

p,
li,
a {
    font-size: 1rem;
    line-height: 1.6;
    color: #dbeafe;
}

ul {
    padding-left: 20px;
}

a {
    color: #7dd3fc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.project-content {
    background: rgba(255, 255, 255, 0.483);
    text-align: center;
    color: black;
    max-width: 80%;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.title {
    font-size: 20px;
    margin-bottom: 10px;
}

.desc {
    font-size: 14px;
    margin-bottom: 5px;
    color:black;
}

.project-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.311);
    color: black;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    background: #585b70;
}

@media (max-width: 900px) {
    .glass-box {
        min-height: auto;
    }
}

.fill {
    width: 0;
    animation: fillBar 2s forwards;
}

.skill span {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.bar {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    height: 25px;
    position: relative;
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
}

.fill {
    height: 100%;
    line-height: 25px;
    background: black;
    color: #fff;
    text-align: right;
    padding-right: 10px;
    border-radius: 10px 0 0 10px;
    font-weight: 600;
    transition: width 0.5s ease-in-out;
}

.proj-contain-thing {
    overflow-y: scroll;
    overflow-x: hidden;
    align-items: center;
    justify-content: center;
    height: 220px;
}

i {
    font-size: 20px;
}