* {
    font-family: "Space Grotesk", sans-serif;
}

.skill-bar {
    width: 0;
    transition: width 2s ease-in-out;
}


.floating-circle {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-card {
    transition: all 0.3s ease;
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    transform: translateY(-5px);
    background: rgba(34, 34, 34, 0.9);
}

.experience-item {
    border-left: 2px solid #313B89;
    padding-left: 2rem;
    position: relative;
}

.experience-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    background: #313B89;
    border-radius: 50%;
}

.portfolio-card {
    transition: all 0.8s ease;
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(05px);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #313B89;
}

.tech-icon {
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 16rem;
    background-color: #111111;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 50;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: none;
}

.menu-overlay.active {
    display: block;
}

.hamburger {
    cursor: pointer;
}
.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: white;
    margin-bottom: 0.375rem;
    transition: all 0.3s ease-in-out;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.overflow-hidden {
    overflow: hidden;
}