@font-face {
    font-family: Agrandir;
    src: url("/media/fonts/Agrandir-GrandHeavy.otf");
}

@media only screen and (max-width: 1700px) {
    /* General Text Styles */
    .projectcard-text h1 {
        font-size: 1em;        /* Adjusted for better readability */
        margin-bottom: 0.6em;
    }

    .projectcard-text h2 {
        font-size: 0.9em;
    }

    .projectcard-text h3 {
        font-size: 0.8em;
        margin-top: 0.4em;
        margin-bottom: 0.4em;
    }

    /* Feature List */
    .feature-list {
        margin-left: 1em;      /* Slightly increased for clarity */
    }

    .feature-list li {
        line-height: 1.2em;
        font-size: 0.75em;
        margin-bottom: 0.3em;
    }

    .projectcard-text p,
    .projectcard-text ul {
        font-size: 0.75em;
        line-height: 1.3em;
    }

    .projectcard-text a {
        font-size: 0.75em;
        padding: 5px;
    }

    /* Icon and Container Adjustments */
    .icon-large {
        font-size: 1.2em;
    }

    .qbert-container,
    .blowit-container,
    .driftshop-container,
    .onepiece-container {
        flex-direction: column;
        overflow-y: auto; /* Avoid overflow while allowing scrolling */
        scrollbar-width: none;      /* Firefox */
        -ms-overflow-style: none;   /* Internet Explorer 10+ */
    }

    .qbert-container,
    .blowit-container,
    .driftshop-container,
    .onepiece-container::-webkit-scrollbar {
        display: none;              /* Chrome, Safari, and Opera */
    }


    /* Responsive Video Styling */
    .qbert-video,
    .blowit-video,
    .driftshop-video,
    .onepiece-video {
        width: 50%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* About Section */
    .about-container {
        height: auto;           /* Remove fixed height to allow natural flow */
        width: 100%;
        gap: 10px;
        flex-direction: column;
        overflow-y: scroll;
        scrollbar-width: none;      /* Firefox */
        -ms-overflow-style: none;   /* Internet Explorer 10+ */
    }
    
    .about-container::-webkit-scrollbar {
        display: none;              /* Chrome, Safari, and Opera */
    }
    .profile-picture {
        width: 100%;             /* Maximize image width for responsiveness */
        max-width: 400px;        /* Reasonable max width for laptops */
    }

    .text-content {
        padding: 10px;           /* Further reduced padding */
    }

    .text-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .text-content h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .text-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .text-content ul {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-left: 20px;
        margin-bottom: 12px;
    }

    /* Education Section */
    .education-list h2 {
        font-size: 1.1rem;
        margin: 5px 0;
    }

    .education-list h3 {
        font-size: 0.95rem;
    }

    .education-list .muted {
        font-size: 0.75rem;
    }

    /* Tabs */
    .tabs {
        margin-right: 20px;
    }

    .tab-button {
        font-size: 13px;
        padding: 6px 10px;
    }

    .tab-button:hover,
    .tab-button.active {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media only screen and (max-width: 1200px) {
    /* Further Adjustments for Smaller Laptop Screens */
    .projectcard-text h1 {
        font-size: 0.95em;
    }

    .feature-list li {
        font-size: 0.7em;
    }

    .text-content h1 {
        font-size: 1.6rem;
    }

    .text-content p,
    .text-content ul {
        font-size: 0.8rem;
    }

    .tab-button {
        font-size: 12px;
        padding: 5px 8px;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Main Wrapper */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(14, 14, 14); /* Black background */
    color: #fff; /* White text */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Navigation Bar Styles */
.navbar {
    margin: auto;
    position: relative; /* Keep the navbar below main content */
    top: 20px; /* Spacing from main content */
    width: 100%; /* Full width */
    height: 100px;
    text-align: center; /* Center align nav items */
}

.navbar-container {
    display: flex; /* Flexbox for horizontal layout */
    justify-content: space-evenly; /* Center the text */
    gap: 30px; /* Space between items */
    position: relative; /* Needed for positioning the rectangle */
    background-color: rgba(0, 0, 0, 0.281);
    border:2px solid rgba(137, 207, 240, 1); /* Baby blue outline */
    border-radius: 20px; /* Rounded corners */
    overflow: hidden;
}


/* Navigation Item Styles */
.nav-item {
    flex-grow: 1;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #89CFF0; /* Baby blue text */
    transition: color 0.3s ease; /* Smooth color transition */
    border-radius: 20px;
    padding: 3px 0px;
}

.nav-item:hover {
    color: #000000; /* Change color on hover */
    background-color: #89CFF0;
}

/* Main Content Styles */
.main-container {
    text-align: center;
    max-width: 600px;
    position: relative; /* Ensures content sits on top of video */
    z-index: 1;
    
}

.contact-container {
    position: fixed;
    background-color: rgb(29, 29, 29);
    height: calc(100% - 100px); /* Matches height adjustment */
    width: calc(100% - 100px);  /* Matches width adjustment */
    border-radius: 30px;
    display: flex;               /* Enable flexbox layout */
    gap: 20px;                   /* Space between items */
    justify-content: center;     /* Center the content horizontally */
    align-items: center;         /* Center the content vertically */
    text-align: center;          /* Center text within each flex item */
    flex-direction: row;
}

.contact-text-content {
    flex: 1;                     /* Allow contact text to grow and fill remaining space */
    color: rgb(221, 221, 221);   /* Matches text color for readability */
    display: flex;               /* Enable flexbox layout for text */
    flex-direction: column;      /* Arrange contact text in a column */
    justify-content: center;     /* Center text vertically within the container */
    align-items: center;         /* Center text horizontally */
    padding: 20px;               /* Padding around the contact text content */
    text-align: center;          /* Center text within this container */
}

.contact-text-content p {
    font-size: 0.9rem;           /* Consistent font size with about page */
    line-height: 1.4;            /* Consistent line height for readability */
    margin-bottom: 10px;
}

.contact-text-content ul {
    font-size: 1.1rem;           /* Matches font size for lists */
    line-height: 1.5;
    margin-left: 0;              /* Remove indentation for centered text */
    margin-bottom: 20px;
    text-align: center;          /* Center align list items */
}

.contact-text-content h1 {
    font-family: Agrandir;
    font-size: 48px;             /* Matches heading size for layout */
    margin-bottom: 20px;
}

.contact-text-content li {
    margin-bottom: 10px;
}

.file-icon-container {
    position: absolute;       /* Allows positioning in the top-right corner */
    top: 80px;                /* Distance from the top */
    right: 80px;              /* Distance from the right */
    z-index: 999;  
    display: flex;            /* Enable flexbox */
    flex-direction: column;   /* Stack icon and text vertically */
    align-items: center;  
    cursor: none;    /* Center icon and text horizontally */
}

.file-icon-container i {
    font-size: 5rem;          /* Icon size */
    color: rgba(137, 207, 240, 1); /* Icon color */
    cursor: pointer;          /* Pointer cursor for clickable icon */
    transition: transform 0.2s; /* Smooth hover effect */
}

.file-icon-container h1 {
    font-family: Agrandir;
    font-size: 20px;
    color: #ffffff;           /* Text color */
    margin-top: 10px;         /* Space between icon and text */
}

.file-icon-container a:hover {
    transform: scale(1.2);
    cursor: none;    /* Enlarge slightly on hover */
}


.icon-container {
    display: flex;
    flex-direction: row; /* Stack icons vertically */
    align-items: center;    /* Center icons horizontally */
    gap: 10px;              /* Space between icons */
    margin-top: 20px;     
    cursor: none;  /* Space between text and icons */
}

.icon-container i {
    font-size: 5rem;        /* Increase icon size */
    color: rgba(137, 207, 240, 1);         /* Icon color */
    cursor: pointer;        /* Add pointer cursor for clickable icons */
    transition: transform 0.2s; /* Smooth hover effect */
}

.icon-container a:hover {
    transform: scale(1.2); /* Slightly enlarge on hover */
    cursor: none;
}

.about-container {
    position: fixed;
    background-color: rgb(29, 29, 29);
    height: calc(100% - 100px); /* Adjusts height of the container */
    width: calc(100% - 100px);   /* Adjusts width of the container */
    border-radius: 30px;
    display: flex;               /* Enable flexbox layout */
    gap: 20px;                  /* Space between items */
    justify-content: space-between; /* Space between text and profile picture */
    flex-direction: row;     
    text-align: justify;   /* Change direction to row */
}

.profile-picture {
    object-fit: cover; 
    width: 700px;
    filter: brightness(0.8);

}

.text-content {
    flex: 1;                    /* Allow text content to grow and fill the remaining space */
    color: rgb(221, 221, 221);  /* Change text color for better visibility */
    display: flex;              /* Enable flexbox for text content */
    flex-direction: column;     /* Align text in a column */
    justify-content: flex-start; /* Align text to the top of the container */
    padding: 20px;
}

.text-content p {
    font-size: 0.9rem;          /* Adjust font size for better readability */
    line-height: 1.4;           /* Decrease line height for better readability */
    margin-bottom: 10px;        /* Space below paragraphs */
}

.education-list {
    color: #555555;             /* Darker gray for normal text */
    margin-bottom: 16px;        /* Add space below each education item */
}

.education-list h2 {
    color: white;               /* Title color */
    margin: 6px 0;             /* Spacing above and below the title */
    font-size: 1.3rem;          /* Smaller font size for titles */
}

.education-list h3 {
    color: rgb(200, 200, 200);  /* Subtitle color */
    margin: 3px 0;             /* Spacing above and below the subtitle */
    font-size: 1rem;            /* Smaller font size for subtitles */
}



.education-list .muted {
    color: rgb(180, 180, 180);  /* Muted color for the school description */
    font-size: 0.8rem;          /* Smaller font for muted text */
    margin-bottom: 6px;         /* Space below muted text */
}

.education-list strong {
    color: rgb(255, 255, 255);  /* Keep strong elements in white */
    display: inline-block;       /* Ensure it takes space as a block */
    margin-top: 6px;            /* Add space above skills */
    font-size: 0.9rem;          /* Smaller font size for skills */
}

.education-list li::marker {
    color: white;              /* Change bullet points to white */
}

.text-content ul {
    font-size: 1.1rem;         /* Adjust font size for lists */
    line-height: 1.5;          /* Increase line height for better readability */
    margin-left: 25px;         /* Indent list items */
    margin-bottom: 20px;       /* Add space below the list */
}

.text-content h1 {
    font-family: Agrandir;
    font-size: 48px;           /* Adjust heading size for better layout */
    margin-bottom: 20px;       /* Space below the heading */
}
.text-content h4 {
    color: rgb(200, 200, 200);  /* Subtitle color */
    margin-bottom: 40px;           /* Spacing above and below the subtitle */
    font-size: 1.5rem;            /* Smaller font size for subtitles */
}

.text-content li {
    margin-bottom: 10px;       /* Adjust space between list items */
}
#about-section {
    position: relative; /* Establish a positioning context for absolute positioning of tabs */
}

.tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-end; /* Align tabs to the right */
    position: absolute; /* Remove tabs from the flow of the document */
    top: 12px; /* Position the tabs at the top */
    right: 10px; /* Position the tabs to the right */
    z-index: 10; /* Ensure tabs appear above other content */
    margin-right: 100px; /* Right margin to align with about-container */
    background-color: rgb(29, 29, 29); /* Match background color to about-container */
    border-top-left-radius: 10px; /* Round top left corner */
    border-top-right-radius: 10px; /* Round top right corner */
}

.tab-button {
    background-color: transparent; /* No background for buttons */
    color: #89CFF0; /* Text color */
    border: none; /* No border */
    padding: 10px 15px; /* Padding around the text */
    cursor: none; /* Pointer cursor for clickable tabs */
    font-size: 16px; /* Font size */
    border-radius: 0; /* No rounded corners on buttons */
}

.tab-button:hover {
    color: #000; /* Black text on hover */
    background-color: #89CFF0; /* Baby blue background on hover */
    box-shadow: 0px 4px 10px rgba(137, 207, 240, 0.3); /* Glow effect */
    border-top-left-radius: 10px; /* Round top left corner */
    border-top-right-radius: 10px; /* Round top right corner */
    cursor: none;

}

.tab-button.active {
    color: #000;
    background-color: #89CFF0; /* Active state matches hover effect */
    box-shadow: 0px 4px 10px rgba(137, 207, 240, 0.4); /* Slightly more glow */
    border-top-left-radius: 10px; /* Round top left corner */
    border-top-right-radius: 10px; /* Round top right corner */
    cursor: none;

}


.title {
    font-size: 5rem; 
    font-weight: 600;
    color: #89CFF0; 
    margin-bottom: 1rem;
    opacity: 0;
    font-family: Agrandir;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-pointer {
    pointer-events: none;
}

.cursor-hidden {
    cursor: none; 
}

.no-hover {
    transform: none; /* Adjust based on your current hover effect */
    cursor: default;
}

/* Subtitle Styles */
.subtitle {
    font-size: 1.4rem;
    color: #d3d3d3; 
    margin-bottom: 2rem;
    opacity: 0;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; 
    transform: scale(1);
    transition: transform 0.1s ease-out; /* Smooth scaling on beat */
    
}

.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover; 
}

.video-background::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-color: rgba(15, 15, 15, 0.932);
}

.section{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0%;
}

.project-container {
    display: flex;
    height: 100%;
    width: calc(100% - 20px); 
    margin: 10px; 
    gap: 10px; 
    padding: 0; 
}

.project-card {
    flex: 1;
    position: relative;
    background-color: rgb(20, 20, 20);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                filter 0.4s ease; /* Transition for the filter effect */
    filter: grayscale(100%); /* Default to 0% grayscale when idle */
    transform-origin: top;
    height: 100%; /* Fixed height to see the card clearly */
}

.project-card:hover {
    box-shadow: 0 0 20px rgb(137, 207, 240); /* Enhanced shadow for emphasis */
    transform: scaleY(0.97) !important; /* Lift effect */
    filter: grayscale(0%); /* Full grayscale on hover */
}

.project-card.clicked {
    filter: grayscale(0%); /* Full grayscale when clicked */
}

.project-card.no-pointer.clicked {
    filter: grayscale(0%); /* Ensure grayscale remains when clicked */
}
.wrapper{
    margin: auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hover-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background-color: rgba(137, 207, 240, 1);
    color: black;
    padding: 10px;
    border-radius: 0 0 30px 30px;
    opacity: 0;
    font-family: Agrandir;
    font-size: 2rem;
    transition: opacity 0.2s ease-in-out;
}

.project-card:hover .hover-box {
    opacity: 1; /* Reveal hover-box smoothly */
    pointer-events: auto;
}



@media only screen and (max-width: 600px) {
    .title {
        font-size: 3rem; 
    }
    
}


@media only screen and (max-width: 600px) {
    .hover-box {
        font-size: 1rem; 
    }
    .project-container{
        flex-direction: column;
        
    
    }
}


.blow-it {
    position: fixed; /* Fixed position to ensure it covers the entire viewport */
    top: 20px;        /* Align to the top of the viewport with a 20px gap */
    right: 20px;      /* Align to the right of the viewport with a 20px gap */
    height: calc(100% - 40px); /* Height of the rectangle minus the top and bottom gap */
    width: calc(100% - 40px);  /* Width of the rectangle minus the left and right gap */
    background-color: rgba(26, 26, 26, 0.95); /* Very dark gray with slight transparency */
    opacity: 1;      /* Fully visible */
    border-radius: 30px; /* Optional: adds rounded corners for a softer look */
    z-index: 9998; /* Ensure it appears above other content */
    box-sizing: border-box; /* Include padding in width/height calculations */
    padding: 30px; /* Inner padding for content */
    transform-origin: top left; /* Set the transform origin to the top right corner */
    text-align: justify;
    flex-direction: column;
}

.driftshop{
    position: fixed; /* Fixed position to ensure it covers the entire viewport */
    top: 20px;        /* Align to the top of the viewport with a 20px gap */
    right: 20px;      /* Align to the right of the viewport with a 20px gap */
    height: calc(100% - 40px); /* Height of the rectangle minus the top and bottom gap */
    width: calc(100% - 40px);  /* Width of the rectangle minus the left and right gap */
    background-color: rgba(26, 26, 26, 0.95); /* Very dark gray with slight transparency */
    opacity: 1;      /* Fully visible */
    border-radius: 30px; /* Optional: adds rounded corners for a softer look */
    z-index: 9998; /* Ensure it appears above other content */
    box-sizing: border-box; /* Include padding in width/height calculations */
    padding: 30px; /* Inner padding for content */
    transform-origin: top left; /* Set the transform origin to the top right corner */
    text-align: justify;
    flex-direction: column;
}
.onepiece{
    position: fixed; /* Fixed position to ensure it covers the entire viewport */
    top: 20px;        /* Align to the top of the viewport with a 20px gap */
    right: 20px;      /* Align to the right of the viewport with a 20px gap */
    height: calc(100% - 40px); /* Height of the rectangle minus the top and bottom gap */
    width: calc(100% - 40px);  /* Width of the rectangle minus the left and right gap */
    background-color: rgba(26, 26, 26, 0.95); /* Very dark gray with slight transparency */
    opacity: 1;      /* Fully visible */
    border-radius: 30px; /* Optional: adds rounded corners for a softer look */
    z-index: 9998; /* Ensure it appears above other content */
    box-sizing: border-box; /* Include padding in width/height calculations */
    padding: 30px; /* Inner padding for content */
    transform-origin: top left; /* Set the transform origin to the top right corner */
    text-align: justify;
    flex-direction: column;


}

.qbert{
    position: fixed; /* Fixed position to ensure it covers the entire viewport */
    top: 20px;        /* Align to the top of the viewport with a 20px gap */
    right: 20px;      /* Align to the right of the viewport with a 20px gap */
    height: calc(100% - 40px); /* Height of the rectangle minus the top and bottom gap */
    width: calc(100% - 40px);  /* Width of the rectangle minus the left and right gap */
    background-color: rgba(26, 26, 26, 0.95); /* Very dark gray with slight transparency */
    opacity: 1;      /* Fully visible */
    border-radius: 30px; /* Optional: adds rounded corners for a softer look */
    z-index: 9998; /* Ensure it appears above other content */
    box-sizing: border-box; /* Include padding in width/height calculations */
    padding: 30px; /* Inner padding for content */
    transform-origin: top left; /* Set the transform origin to the top right corner */
    text-align: justify;
    flex-direction: column;

}



.qbert-container {
    display: flex; /* Aligns the video and content side by side */
    height: 100%; /* Make sure the container takes the full height of the qbert card */
}

.qbert-content {
    flex: 2; /* This will take up 2 parts of the total space */
    padding-right: 20px; /* Space between content and video */
}

.qbert-video {
    flex: 1; /* This will take up 1 part of the total space */
    display: flex; /* Ensure video is centered vertically */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    mix-blend-mode:lighten;
}
.projectcard-title {
    font-family: Agrandir, sans-serif;
    color: #ffffff; /* Bright white to stand out */
    font-size: 2.8rem; /* Slightly larger */
    font-weight: bold;
    margin-bottom: 0.5em; /* Space below the title */
}

.projectcard-text {
    max-width: 800px;
    color: #bfbfbf;
    overflow: hidden; /* Prevent overflow */
    padding: 0.5em;
    box-sizing: border-box; /* Ensures padding is within the element's max width */
}

.projectcard-text h1 {
    font-size: 1.5em;
    color: #bbbbbb; /* Light gray for subtitle */
    font-weight: 500;
    margin-bottom: 1.2em; /* Increase space for separation */
}

.projectcard-text h2 {
    font-size: 1.2em;
    color: #cccccc; /* Brighter color for section heading */
}

.projectcard-text h3 {
    font-size: 1.1em; /* Adjust this value as needed */
    color: #e0e0e0; /* Slightly lighter gray */
    font-weight: 600;
    margin-top: 1em; /* Add top margin for spacing */
    margin-bottom: 0.8em; /* Space below heading */
}


.feature-list {
    list-style-type: disc;
    margin-left: 1.5em;
    color: #888888; /* Muted gray for less emphasis */
}
.feature-list li {
    line-height: 1.4em;
    font-size: 1.1em; /* Smaller font for list items */
    margin-bottom: 0.1em;
    color: #666666;
}

.feature-list li strong {
    color: #e6e6e6; /* Bright light gray to stand out */
    font-weight: bold; /* Ensure it stands out more */
}
.feature-list li::marker {
    color: #ffffff; /* Change the bullet color to white */
}


.projectcard-text p, .projectcard-text ul {
    font-size: 0.9em; /* Smaller font for general content */
    color: #6e6e6e;
    line-height: 1.6em;
}

.projectcard-text a {
    color: rgba(137, 207, 240, 1); /* Vibrant blue for link */
    font-weight: bold;
    text-decoration: none;
    padding: 10px;
    font-size: 1em; /* Same size as main text */
    transition: color 0.3s; /* Smooth color transition */
}
.projectcard-text a:hover {
    color: #000000;
    background-color: rgba(137, 207, 240, 1);;
    border-radius: 10px;
    cursor: none;
}

.icon-large {
    font-size: 2.5em; /* Change the size as needed */
    /* Optionall adjust vertical alignment */
    vertical-align: middle; /* Keeps it aligned with surrounding text */
    cursor: none;
}
/* Enhanced Fixed Navbar Container */
.fixednavbar-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Slightly more opaque for better readability */
    border: 2px solid rgba(137, 207, 240, 1); /* Baby blue outline */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */

}

.fixednavbar-container:hover {
    background-color: rgba(0, 0, 0, 0.5); /* Darker background on hover */
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3); /* Slightly larger shadow on hover */

}

/* Enhanced Fixed Navbar Item */
.fixednav-item {
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #89CFF0; /* Baby blue text */
    font-weight: 600; /* Slightly bolder for emphasis */
    border-radius: 10px; /* Consistent with container */
    padding: 10px 15px; /* More padding for a balanced look */
    cursor: none;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;}

.fixednav-item:hover {
    color: #000; /* Black text on hover */
    background-color: #89CFF0; /* Baby blue background on hover */
    box-shadow: 0px 4px 10px rgba(137, 207, 240, 0.3); /* Glow effect */
}

.fixednav-item.active {
    color: #000;
    background-color: #89CFF0; /* Active state matches hover effect */
    box-shadow: 0px 4px 10px rgba(137, 207, 240, 0.4); /* Slightly more glow */
}

.fixednavbar {
    position: fixed;
    top: -30px;
    width: 100%;
    height: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.3s;
    z-index: 9999;
}

.fixednavbar:hover {
    top: 0px; /* Slide down to be fully visible */
}