body {
    font-family: 'Times New Roman', Times, serif;
    background: linear-gradient(135deg, #ffffff, #007BFF, red);
    min-height: 100vh;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */

}

.navbar .navbar-nav .nav-link:hover {
    color: #0e1111 !important;
    transform: scale(1.2);
    transition: 1s ease;
}

.navbar .navbar-nav .nav-link.active:hover {
    color: #232b2b !important;
    transform: scale(1.2);
    transition: 1s ease;
}

.navbar .navbar-nav .nav-link.active {
    color: #000000 !important;
    transform: scale(1.3);
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
    transition: 1s ease;
}

.navbar .navbar-nav .nav-link {
    color: #3b444b !important;
    font-weight: bold;
    transition: 1s ease;
}

.navbar .navbar-nav .nav-link {
    transition: 1s ease;
}

.bg-deep-dark {
    background-color: #232b2b;
}

.gradient-text {
    background: linear-gradient(to right, #232b2b, blue);
    /* Define the gradient colors */
    -webkit-background-clip: text;
    /* Clip the background to the text */
    -webkit-text-fill-color: transparent;
    /* Make the text transparent so the background is visible */
    background-clip: text;
    text-fill-color: transparent;
}
.gradient-text3 {
    background: linear-gradient(to right, #fcfcfc, yellow);
    /* Define the gradient colors */
    -webkit-background-clip: text;
    /* Clip the background to the text */
    -webkit-text-fill-color: transparent;
    /* Make the text transparent so the background is visible */
    background-clip: text;
    text-shadow: 1px 2px 2px rgba(0,0,0,0.9);
    text-fill-color: transparent;
}

.gradient-text2 {
    background: linear-gradient(to right, red, green, blue);
    /* Define the gradient colors */
    -webkit-background-clip: text;
    /* Clip the background to the text */
    -webkit-text-fill-color: transparent;
    /* Make the text transparent so the background is visible */
    background-clip: text;
    text-fill-color: transparent;
}

#headerNav {
    /* background-color: transparent; */
    transition: background-color 0.6s ease-in-out;
}

.animated-image {
    /* width: 100px; Adjust size as needed */
    /* height: auto;  */
    animation: subtleMove 3s ease-in-out infinite;
    /* Animation properties */
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(5px, 5px);
        /* Slightly move down and to the right */
    }

    50% {
        transform: translate(-5px, -5px);
        /* Move slightly up and to the left */
    }

    75% {
        transform: translate(5px, -5px);
        /* Move slightly up and to the right */
    }

    100% {
        transform: translate(0, 0);
        /* Return to original position */
    }
}

.card {
    transition: transform 0.3s ease;
    /* Smooth transition */
}

.card:hover {
    transform: scale(1.05);
    /* Scale the card */
}

.zoom-text {
    display: inline;
    /* Change to inline so it behaves like a normal text */
}

.zoom-text span {
    display: inline-block;
    /* Allows for transformation */
    opacity: 0;
    /* Start hidden */
    transform: scale(0.5);
    /* Start smaller */
    animation: zoomIn 0.2s forwards;
    /* Zoom in animation */
}

@keyframes zoomIn {
    100% {
        opacity: 1;
        /* Fully visible */
        transform: scale(1);
        /* Original size */
    }
}

::-webkit-scrollbar {
    display: none;
}

.skeleton {
    height: 100%;
    width: 100%;
    animation: skeleton-loding 1s linear infinite alternate;
}

@keyframes skeleton-loding {
    0% {
        background-color: hsl(200, 20%, 70%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

.nav li {
    list-style-type: none;
    /* Remove default list styling */
    margin: 0;
    /* Remove margin */
}

.reverse {
    all: revert;
}

.remove-underline {
    text-decoration: none;
}