.nav-link {
    color: #ffffff;
}

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

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

header {
    animation: slideDown 1s ease forwards;
}

.bottom {
    animation: slideUp 1.2s ease forwards;
}


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

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

.heading {
    font-family: Inter, sans-serif;
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: #ede8ff;
}

.sub-text {
    font-family: 'Niccone', cursive;
    font-size: 1rem;
    letter-spacing: 1px;
}

.highlight {
    color: hsl(259, 94%, 73%);
}

.text-sm {
    font-size: 0.875rem;
}

.degree {
    color: #ede8ff;
}

.college {
    font-size: 1rem;
    margin-top: 0;
}

.vision-text {
    font-size: 1rem;
    color: #c6b2d9
}

body .box {
    border-radius: 20px;
    padding: 20px;

    background: #0b1220;

    border-top: 1px solid white;
    border-left: 1px solid white;
    font-size: 1.2rem;
}

.badge {
    color: #9f6cf5;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.25);
    border-radius: 15px;
    height: 25px;
    margin: 0.8rem 0;
    font-size: 1rem;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-container-skills {
    flex-direction: column;
}

.badge-normal {
    color: #a898c8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline;
    padding: 0 10px;
    border-radius: 6px;
}

.badge-skills {
    border-radius: 6px;
    font-size: 1rem;
}

.badge-learning {
    border-radius: 15px;
    font-size: 1rem;
}

.badge-mindset {
    border-radius: 6px;
    font-size: 1.2rem;
    box-shadow: -4px 0 0 rgb(114, 35, 242);
}

.mindset-text {
    margin-left: 10px;
}

.box-career {
    background: rgba(123, 47, 247, 0.05);
    border: 1px solid rgba(123, 47, 247, 0.2) !important;
    border-radius: 10px;
    padding: 13px 15px;
}

.hobby-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.hobby {
    font-size: 1.2rem !important;
}

.hobby-description {
    font-size: 0.875 !important;
}

.badge-normal:hover {
    animation: glow 0.8s ease-in-out forwards;
}

.badge-highlight:hover {
    animation: glow 0.8s ease-in-out forwards;
}

.badge-highlight {
    color: #c4a8ff;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.35);
    display: inline;
    padding: 0 10px;
}

.box:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 8px 32px rgba(123, 47, 247, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #3d2e60;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.dot-highlight {
    background: #a07af0;
    animation: pulse 1.8s ease-in-out infinite;
}

.sticky-top {
    background-color: #0d1117;
}

body .box-1 {
    animation: slideLeft 1.6s ease-in-out forwards;
}

body .box-2 {
    animation: slideRight 1.8s ease-in-out forwards;
}

body .box-3 {
    opacity: 0;
    animation: fadeIn 1.8s ease-in-out forwards;
}

.edu-year-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.edu-from {
    color: #b48aff !important;
    font-size: 1rem;
    font-weight: 500 !important;
}

.edu-arrow {
    color: #5e4d8a !important;
    font-size: 1rem;
}

.edu-to {
    color: #5e4d8a !important;
    font-size: 1rem;
}

.badge-skills i {
    font-size: 0.9rem;
    margin-right: 5px;
    vertical-align: middle;
}


@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% {
        box-shadow: 0 0 0 0 rgba(160, 122, 240, 0.7);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(160, 122, 240, 0);
        transform: scale(1.3);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(160, 122, 240, 0.7);
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(92, 59, 239, 0.4),
            0 0 10px rgba(59, 32, 180, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 15px rgba(87, 53, 237, 0.8),
            0 0 30px rgba(68, 37, 209, 0.4);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 5px rgba(92, 59, 239, 0.4),
            0 0 10px rgba(59, 32, 180, 0.2);
        transform: scale(1);
    }
}