.nav-link {
    color: #ffffff;
    position: relative;
}

.nav-pills .nav-link.active {
    background: linear-gradient(45deg, #7b2ff7, #9f44d3);
    color: white;
    border-radius: 8px;
}

.nav-link:hover {
    color: #7c3aed;
}


.nav-pills .nav-link {
    color: white;
}

body {
    background-color: #0d1117;
    color: #ffffff;
    font-family: 'Niccone', cursive;
}

.fs-4 {
    font-family: 'Niccone', cursive;
    font-weight: 600;
    letter-spacing: 1px;
}

.intro {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 20px;
    font-style: normal;
    letter-spacing: 5px;
}

.sub-text-1 {
    font-family: 'Niccone', cursive;
    font-size: 2rem;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.sub-text {
    font-family: 'Niccone', cursive;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 10px;
}

.highlight {
    color: #7b2ff7;
    font-weight: 600;
    font-family: 'Niccone', cursive;
    animation: textGlow 2s ease;
}

.profile-pic {
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    margin-left: 1rem;
    animation: float 6s ease infinite, glow 2s ease infinite;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: slideLeft 1.4s ease forwards;
}

.right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: slideRight 1.6s ease forwards;
}

.bi {
    height: 3rem;
    width: 3rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bi:hover {
    transform: translateY(-6px) scale(1.1);
    color: #7b2ff7;
}

.sticky-top {
    background-color: #0d1117;
    animation: slideDown 1s ease forwards;
}


.bottom-animation {
    animation: slideUp 1.4s ease forwards;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29, 158, 117, 0.12);
    color: #1D9E75;
    border: 1px solid rgba(29, 158, 117, 0.3);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(13, 233, 164, 0.825);
    animation: pulse 1.5s ease-in-out infinite;
}

.connect {
    animation: slideDown 1.2s ease forwards;
}



@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.7);
        box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(29, 158, 117, 0);
    }

    100% {
        transform: scale(0.7);
    }
}

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

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

@keyframes glow {

    0% {
        box-shadow:
            0 0 5px #7b2ff7,
            0 0 10px #7b2ff7;
    }

    50% {
        box-shadow:
            0 0 15px #7b2ff7,
            0 0 25px #7b2ff7;
    }

    100% {
        box-shadow:
            0 0 5px #7b2ff7,
            0 0 10px #7b2ff7;
    }

}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px #7b2ff7;
    }

    50% {
        text-shadow: 0 0 15px #7b2ff7;
    }

    100% {
        text-shadow: 0 0 5px #7b2ff7;
    }
}