/* Apply to all scrollbars across the page */
.txt {
    color: white;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    /* Makes the scrollbar thinner */
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    /* Thumb color and track color */
}

/* WebKit Browsers (Chrome, Safari) */
*::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
    height: 8px;
    /* Height of the scrollbar (for horizontal scrollbars) */
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    /* Roundness of the scrollbar thumb */
}

*::-webkit-scrollbar-track {
    background: transparent;
    /* Transparent track */
}

/* Hide scrollbar completely when not scrolling */
* {
    overflow: -moz-scrollbars-none;
    /* For older versions of Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* For modern versions of Firefox */
}

*::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}
.txt-light {
    color: rgb(0, 0, 0)!important;
}
bg-light{
    background: rgb(206, 206, 206)!important;
}
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    /* Prevent default scrolling */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(rgb(0, 0, 0) 80%,rgba(128, 128, 128, 0.466) 20%); */

}

a {
    color: none;
    text-decoration: none;
}

.master {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 1280px;
    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow-y: auto;
}

.dp {
    width: 100%;
    height: 20%;

}

.dpi {
    width: 100%;
    height: 100%;
    width: 150px;
    /* Adjust the size of the circle */
    height: 150px;
    /* Ensure the height matches the width */
    border-radius: 50%;
    /* Creates the circular shape */
    border: 3px solid #333;
    /* Optional: Add a border around the image */
    object-fit: cover;
    /* Ensures the image fits within the circular area */
    display: block;
    margin-bottom: 3rem;
}

/* main {
    width: 55%;
    padding-bottom: 6rem;
    overflow-y: auto;
    height: 100vh !important;
}

.Main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

header {
    max-width: fit-content;
    width: 40%;
} */
.Main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    /* Keeps the gap between divs on wide screens */
}

main {
    width: 55%;
    /* padding-bottom: 6rem; */
    overflow-y: auto;
    height: 100vh !important;
    box-sizing: border-box;
    /* Ensures padding is included in the width */
}

header {
    max-width: fit-content;
    width: 40%;
    box-sizing: border-box;
    /* Ensures padding is included in the width */
}

/* Media query to adjust layout on smaller screens */
@media (max-width: 768px) {
    .Main {
        flex-direction: column;
        /* Stack the divs */
    }

    main,
    header {
        width: 100%;
        /* Make both divs take up full width */
    }
}

.highlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 950px;
    /* Increased size */
    height: 950px;
    /* Increased size */
    background: radial-gradient(circle, #293c4728 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: 90%;
    /* Ensures the circle shape */
    transform: translate(-50%, -50%);
    transition: background 0.3s ease-out;
    z-index: 9999;
}

.hero {
    color: inherit;
    text-decoration: none;
    font-size: 2.2rem;
    line-height: 1;
    opacity: 0.8;
    color: rgb(235, 229, 229);
    letter-spacing: -.025em;
    font-weight: 700;
}

.hero:hover {
    color: rgb(0, 255, 145);
}

.heroDeets {
    color: rgb(177, 166, 166);
    font: 1em sans-serif;
    font-size: 1.5rem;
}

.intro {
    font-size: 20px !important;
    color: rgb(97, 92, 92);
}

.contactIcon {
    font-size: 2rem;
    color: rgb(197, 199, 201);
}

.contactIcon:hover {
    color: rgb(0, 253, 144);
}

#AboutMe {
    font-size: medium;
    color: aliceblue;
}

.aboutmetxt {
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    height: 50vh;
    overflow-y: auto;
}

.CV {
    font-size: 1.5rem;
}

ul {
    padding-left: 0px !important;
}

#resume {
    padding: 1rem;
    padding-left: 0px !important;
}

.resume,
.exp1 {
    display: flex !important;
    align-items: center;
    flex-direction: row;
    color: rgb(255, 255, 255);
    max-width: fit-content;
}

.resumelink {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 3rem;
    line-height: 1;
    opacity: 0.8;
    color: rgb(255, 255, 255);
    letter-spacing: -.025em;
    font-weight: 700;
}

.resume:hover,
.resumelink:hover {
    color: rgb(0, 255, 187) !important;
}

.arrowbox {
    height: 1rem;
    width: 1rem;
    font-size: 0.8rem;
    /* align-content: center; */
    margin-left: 5px;
    margin-bottom: .5rem;
    transition: transform 0.2s ease-in-out;
    position: relative;
}

.resume:hover .arrowbox {
    transform: translate(5px, -5px);
}

.dotseperator {
    display: block;
    margin-bottom: .5rem;
    width: 0.5rem;
    height: 1px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    background-color: aliceblue;
}

.pill {
    display: block;
    width: 1.5rem;
    height: 1px;
    background-color: aliceblue;
    padding-right: 5px;
    transition: width 0.3s ease-out;
}

.tech > ol,
.tech > li {
    list-style: none;
}

ol {
    padding-left: 0px;
}

.menulink {
    display: flex;
    align-items: center;
    color: #dde2e9;
    text-decoration: none;
    gap: 10px;
    max-width: fit-content;
    font-size: 20px;
    cursor: pointer;

}

.menulink:hover .pill {
    width: 4rem;
}

.menulink .active {
    display: flex;
    align-items: center;
    color: #0cf37f;
    text-decoration: none;
    gap: 10px;
    max-width: fit-content;
    font-size: 20px;

}

.menulink.active .pill {
    width: 4rem;
}

.exp1:hover .arrowbox {
    transform: translate(5px, -5px);
}

.exp1:hover {
    color: #0cf37f !important;
}

.techUsed {
    --tw-text-opacity: 1;
    color: rgb(0 254 148 / var(--tw-text-opacity));
    line-height: 1.25rem;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .75rem;
    padding-right: .75rem;
    background-color: rgba(11, 239, 159, 0.1);
    border-radius: 9999px;
    align-items: center;
}
.nav{
    flex-direction: row-reverse;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.navheads {
    color: #8080807a;
}

.expTime {
    color: #ffffff99;
}
.expTime:hover {
    color: #00ff9d;
}

.leading-normal {
    color: rgba(178, 182, 180, 0.842);
}

.pp1 {
    display: none;
    width: 80% !important;
}

#exampleModal {
    display: none;
}

.moveDown {
    animation-name: moveDown;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.moveDown-reverse {
    animation-name: moveDown-reverse;
    animation-duration: 0.8s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveDown-reverse {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

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

.moveon {
    animation-name: moveon;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveon {
    0% {
        transform: translateX(0);
        /* opacity: 1; */
    }

    100% {
        transform: translateX(-100%);
        /* opacity: 0; */
    }
}

.moveon-reverse {
    animation-name: moveon-reverse;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveon-reverse {
    0% {
        transform: translateX(0);
        /* opacity: 1; */
    }

    100% {
        transform: translateX(100%);
        /* opacity: 0; */
    }
}

.moveoff {
    animation-name: moveoff;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveoff {
    0% {
        transform: translateX(-100%);
        /* opacity: 1; */
    }

    100% {
        transform: translateX(0%);
        /* opacity: 0; */
    }
}

.moveoff-reverse {
    animation-name: moveoff-reverse;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveoff-reverse {
    0% {
        transform: translateX(100%);
        /* opacity: 1; */
    }

    100% {
        transform: translateX(0%);
        /* opacity: 0; */
    }
}
.expc{
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    padding: 20px;
    border-radius: 8px;
    cursor:pointer;
}
.expc:hover {
    transform: scale(0.95); /* Slightly enlarge the div */
    box-shadow:0px 10px 20px rgba(0, 0, 0, 0.2), /* Top and bottom shadow */
    10px 0px 20px rgba(0, 0, 0, 0.2); 
}
