* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    width: 100%;
    min-width: 800px;
    min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin: 0;
}

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    padding: 10rem;
    box-shadow: 
    0px -44px 10px rgba(0,0,0,0.3),  
    0px 44px 10px rgba(0,0,0,0.3);   

}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 2rem;
    padding-top: 2rem;
    height: 100%;
}
.about-content h2 {
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #6e8efb; 
}
.about-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #c7d2fe;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #6e8efb;

}
.tech-stack {
    width: 100%;
    padding-block: 1rem;
    position: relative;
}

.stack-list {
    margin-bottom: 3rem;
}

.stack-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    color: white;
    background-color: rgba(255,255,255,0.05);
    border: 4px solid rgba(0,0,0,0.5);
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(1.2);
}
.stack-item.show {
    opacity: 1;
    transform: scale(1.0);
}
.stack-item img {
    transition: transform 0.4s ease;
    width: 64px;
    height: 64px;
    object-fit: contain;
    background-color: transparent;
}
.stack-list h2 {
    font-size: 1.75rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.stack-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}
.stack-item:hover span {
    color: #6e8efb;
}
.stack-item:hover {
    transform: translateY(30px) rotate(5deg);
    border: 4px solid #6e8efb;
    z-index: 10;
    color: #6e8efb;
}
@media (max-width: 768px) {
    .stack-list ul {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .stack-list ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stack-item {
        padding: 1rem;
    }
    
    .stack-item img {
        width: 40px;
        height: 40px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}