/* /Components/BumpCard.razor.rz.scp.css */
.bump-card[b-3nqxvmvc9u] {
    width: 100%;
    height: 100%;
    background: var(--navbar-color);
    border: 6px solid var(--border-color);
    box-shadow: 8px 8px 0 var(--navbar-color);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.bump-card:hover[b-3nqxvmvc9u] {
    transform: translate(-5px, -5px);
    box-shadow: 13px 13px 0 var(--navbar-color);
}

.card__title[b-3nqxvmvc9u] {
    font-size: 16px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.card__title[b-3nqxvmvc9u]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 3px;
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.card:hover .card__title[b-3nqxvmvc9u]::after {
    transform: translateX(0);
}

.card__content[b-3nqxvmvc9u] {
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

.card__form[b-3nqxvmvc9u] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card__form input[b-3nqxvmvc9u] {
    padding: 10px;
    border: 3px solid #000;
    font-size: 16px;
    font-family: inherit;
    transition: transform 0.3s;
    width: calc(100% - 26px); /* Adjust for padding and border */
}

.card__form input:focus[b-3nqxvmvc9u] {
    outline: none;
    transform: scale(1.05);
    background-color: #000;
    color: #ffffff;
}

.card__button[b-3nqxvmvc9u] {
    border: 3px solid #000;
    background: #000;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    left: 20%;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 50%;
    height: 100%;
}

.card__button[b-3nqxvmvc9u]::before {
    content: "Sure?";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-color: #5ad641;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.card__button:hover[b-3nqxvmvc9u]::before {
    transform: translateY(0);
}

.card__button:active[b-3nqxvmvc9u] {
    transform: scale(0.95);
}

@keyframes glitch-b-3nqxvmvc9u {
    0% {
        transform: translate(2px, 2px);
    }
    25% {
        transform: translate(-2px, -2px);
    }
    50% {
        transform: translate(-2px, 2px);
    }
    75% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(2px, 2px);
    }
}

.glitch[b-3nqxvmvc9u] {
    animation: glitch-b-3nqxvmvc9u 0.3s infinite;
}

.tag[b-3nqxvmvc9u] {
    height: 28px;
    border: 1px solid var(--border-color); /* Border color and width */
    display: inline-block; /* Make the border fit the paragraph */
    padding: 5px 8px 4px 8px; /* Optional: add some padding for better look */
    border-radius: 15px;
    font-size: 12px;
}
/* /Components/Footer.razor.rz.scp.css */
footer[b-enpi8jjknt] {
    background-color: var(--navbar-color);
    font-size: 14px;
}

.border-top-divider[b-enpi8jjknt] {
    border-top: 1px solid var(--border-color);
}

.border-bottom-divider[b-enpi8jjknt] {
    border-bottom: 1px solid var(--border-color);
}

.footer-content[b-enpi8jjknt] {
    margin: 0 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: var(--secondary-color);
    width: 80%;
    max-width: 1280px;
}

.footer-top-content[b-enpi8jjknt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top-left-content p[b-enpi8jjknt] {
    font-size: 14px;
    margin: 0;
}

.footer-top-right-content h1[b-enpi8jjknt] {
    font-size: 68px;
    margin: 0;
}

.bi-back-to-top[b-enpi8jjknt] {
    fill: var(--secondary-color);
    margin-right: 8px;
}

@media (max-width: 767px) {
    footer[b-enpi8jjknt] {
        margin-bottom: 108px;
    }
}

@media (max-width: 1024px) {
    .footer-top-content[b-enpi8jjknt] {
        flex-direction: column;
    }
}
/* /Components/Page.razor.rz.scp.css */
section[b-bhtnn3308y] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5em auto;
    padding: 0 3em;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) or (max-width: 767px) {
    section[b-bhtnn3308y] {
        max-width: 1024px;
    }
}

@media (max-width: 767px) {
    section[b-bhtnn3308y] {
        padding: 0;
        margin: 3em auto;
    }
}
/* /Components/PageHeader.razor.rz.scp.css */
header[b-teovuqgsef] {
    width: 100%;
}
/* /Components/ProfilePic.razor.rz.scp.css */
.profile-pic-component[b-dwjas5t6i4] {
    position: fixed;
    height: 6rem;
    width: 235px;
    z-index: 1001;
    background-color: var(--navbar-color);
    border-right: 1px solid var(--border-color);
}

.profile-pic[b-dwjas5t6i4] {
    height: 2.5em;
    margin-left: 20px;
    margin-right: 12px;
    border-radius: 50%;
}

.profile-text-h5[b-dwjas5t6i4] {
    font-size: 14px;
    line-height: 13px;
}

@media (max-width: 767px) {
    .profile-pic-component[b-dwjas5t6i4] {
        background-color: var(--navbar-color);
        border-bottom: 1px solid var(--border-color);
        width: 100vw;
        border-right: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-oncos2bc07] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-oncos2bc07] {
    flex: 1;
}

.sidebar[b-oncos2bc07] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-oncos2bc07] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-oncos2bc07]  a, .top-row[b-oncos2bc07]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-oncos2bc07]  a:hover, .top-row[b-oncos2bc07]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-oncos2bc07]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-oncos2bc07] {
        justify-content: space-between;
    }

    .top-row[b-oncos2bc07]  a, .top-row[b-oncos2bc07]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-oncos2bc07] {
        flex-direction: row;
    }

    .sidebar[b-oncos2bc07] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-oncos2bc07] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-oncos2bc07]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.custom-navbar[b-r8cei6wotg] {
    background-color: var(--navbar-color); /* A dark background color */
    border-right: 1px solid var(--border-color);
    color: white;          /* Text color for contrast */
    position: sticky;
    width: 235px;
    height: 100vh;
    top: 0; /* Anchor the navbar to the top */
    padding: 7em 1.25em 0 1.25em;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap; /* Prevent wrapping of navigation items */
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1000; /* Ensure the navbar stays on top */
    scrollbar-width: none;
}

.navbar-label[b-r8cei6wotg] {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 10px;
    color: var(--secondary-color);
    padding-top: 3.25em;
}

.nav-link p[b-r8cei6wotg] {
    font-size: 14.4px;
    margin: 0;
}

.nav-item[b-r8cei6wotg] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item[b-r8cei6wotg]  a {
    color: var(--secondary-color);
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    border: 1px solid transparent;
}

.nav-item[b-r8cei6wotg]  a.active {
    background-color: var(--border-color);
    color: var(--primary-color);
    border: 1px solid var(--border-color-btn);
}

.nav-item[b-r8cei6wotg]  a:hover {
    color: var(--primary-color);
}

.bi[b-r8cei6wotg] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

@media (max-width: 767px) {
    
    .custom-navbar[b-r8cei6wotg] {
        position: fixed;
        top: auto; /* Undo top anchor */
        bottom: 0; /* Anchor the navbar to the bottom */
        padding: 0 55px 0 55px;
        border-right: none;
        width: 100vw;
        height: 108px; /* Set a fixed height */
        overflow-x: auto;
        overflow-y: hidden;
        flex-direction: row;
        align-items: center;
        gap: 55px;
    }

    /* Apply this to each child element to increase their width */
    .custom-navbar > *[b-r8cei6wotg] {
        flex: 1; /* Each element will take up equal width */
        max-width: 60px;
    }
    
    .navbar-label[b-r8cei6wotg] {
        display: none; /* Hide the label for small screens */
    }

    .nav-link p[b-r8cei6wotg] {
        font-size: 11.2px;
        margin-top: auto;
        margin-bottom: 0;
        bottom: 0;
    }
    
    .nav-item[b-r8cei6wotg] {
        padding-bottom: 0;
    }
    
    .nav-item[b-r8cei6wotg]  a {
        font-size: 0.7rem; /* Adjust the font size as needed */
        padding-bottom: 0;
    }

    .bi[b-r8cei6wotg] {
        margin-right: 0;
        z-index: 10;
    }
}
/* /Pages/About.razor.rz.scp.css */
h1[b-hjud9gar6l] {
    color: var(--primary-color);
}

h5[b-hjud9gar6l] {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 16px;
}

p[b-hjud9gar6l] {
    color: var(--secondary-color);
    text-align: left;
}

.detail ~ p[b-hjud9gar6l] {
    font-size: 14px;
}

.pic-container[b-hjud9gar6l] {
    width: 100%; /* Set the desired width */
    height: 640px; /* Set the desired height */
    overflow: hidden; /* Hide the overflow */
    position: relative;
    border-radius: 10px;
    border: solid 1px var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color); /* Add border glow */
}

.about-pic[b-hjud9gar6l] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

@media (max-width: 576px) {
    .pic-container[b-hjud9gar6l] {
        width: 120%;
    }
}
/* /Pages/Contact.razor.rz.scp.css */
.message-form h2[b-h8pkj6aew0] {
    font-size: 20px;
    font-weight: 600;
}

.message-form h3[b-h8pkj6aew0] {
    font-size: 16px;
    font-weight: 400;
}

button[b-h8pkj6aew0] {
    border-radius: 8px;
    background-color: var(--border-color-btn);
    border: none;
    height: 3em;
}

button p[b-h8pkj6aew0] {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding-top: 2px;
}

button:hover[b-h8pkj6aew0] {
    background-color: var(--border-color);
    transition: background-color .3s ease-in-out;
}

button:active[b-h8pkj6aew0] {
    transform: scale(.98);
    transition: transform .15s ease-in-out;
}
/* /Pages/Home.razor.rz.scp.css */
h1[b-1wruhseivw] {
    text-align: left;
}
/* /Pages/Projects.razor.rz.scp.css */
.album[b-s449girkkc] {
    padding: 0;
}

.container[b-s449girkkc] {
    padding: 0;
}
