    /* General reset and body styling */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html,
    body {
        height: 100%;
        overflow-x: hidden;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(8px);
        overflow: hidden;
        /* Hides scrollbar */
    }

    body {
        font-family: sans-serif;
        position: relative;
        background-color: #f4f4f4;
        /* Light gray background */
    }

    /* Blurred background effect */
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('imgs/AIRobot.jpg');
        /* Replace with your desired image */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.85;
        /* Slightly darker */
        z-index: -2;
        filter: blur(10px);
        /* Adjusted for ~45% of the original blur (20px -> 9px) */
        background-blend-mode: darken;
        backdrop-filter: blur(6.75px);
        /* Proportional to ~45% of the original 15px */
    }

    /* Dark overlay to add more depth */
    body::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(10, 10, 50, 0.75);
        /* Darker blue overlay */
        opacity: 0.9;
        /* Increased overlay opacity for darker effect */
        z-index: -1;
    }

    /* Welcome section */
    #welcome {
        padding: 20px;
        text-align: center;
        z-index: 2;
        margin-top: 1px;
    }

    /* Header and Navigation */
    header.navbar {
        display: flex;
        background-color: #161b22;
        padding: 15px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 2rem;
        align-items: center;
    }

    header h1 {
        font-size: 1.8rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        font-weight: bold;
    }

    .navbar a {
        color: white;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 10px 20px;
        position: relative;
        transition: all 0.3s ease;
        text-align: center;
    }

    .navbar a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #1434A4;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease;
    }

    .navbar a:hover::before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .navbar-item:hover {
        color: #1434A4 !important;
    }

    .navbar-item {
        color: white !important;
    }

    .navbar-burger {
        position: absolute;
        /* Allows precise positioning */
        left: -35px !important;
        /* Adjust distance from the left edge */
        height: auto;
        color: white !important;
    }

    /* Header content styling */
    .header-content {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 20px;
        padding-left: 20px;
    }

    .logo {
        width: 15%;
        height: auto;
        margin-right: 20px;
    }

    /* Contact info styling */
    #contact-info {
        background-color: rgba(255, 255, 255, 0.7);
        padding: 20px;
        text-align: center;
        width: 60%;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px;
        z-index: 2;
    }

    #contact-info h2 {
        margin-bottom: 15px;
        font-family: 'Bebas Neue', sans-serif;
    }

    /* Header styles */
    header h1 {
        font-family: 'Coiny', sans-serif;
        font-size: 30px;
        background-image: linear-gradient(to right, rgb(0, 140, 255), cyan, blue, rgba(0, 0, 0, 0.817));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: rainbow-animation 150s linear infinite;
        opacity: 0.9;
        text-align: center;
        padding: 10px;
        margin: 0 auto;
    }

    @keyframes rainbow-animation {
        to {
            background-position: 4500vh;
        }
    }

    header p {
        color: white;
        font-family: 'Coiny', sans-serif;
    }

    /* Additional styles for headings and paragraphs */
    h2 {
        font-family: 'Space Mono', monospace;
        font-size: 20px;
        color: black;
        padding: 24px;
        border-radius: 50px;
        position: fixed;
        top: 6px;
        left: 6px;
        z-index: 2;
    }

    p {
        font-family: "Coiny";
        font-size: 20px;
        z-index: 5;
        position: relative;
    }

    .navbar-burger {
        position: absolute;
        /* Allows precise positioning */
        left: -15px;
        /* Adjust distance from the left edge */
        width: 90px;
        height: auto;
    }


    /* Mobile Devices (up to 767px) */
    @media (max-width: 767px) {

        /* Logo size for mobile */
        .logo {
            width: 25%;
        }

        /* Contact Info Section */
        #contact-info {
            width: 90%;
            bottom: 50px;
        }

        /* Welcome section */
        #welcome {
            padding: 10px;
            font-size: 1.2rem;
        }

        .navbar a {
            font-size: 0.9rem;
            color: black !important;
        }

        header h1 {
            font-size: 1.2rem !important;
            /* Smaller font size */
            margin-left: auto;
            /* Push it to the right */
            margin-right: 0px;
            /* Adjust spacing from the right edge */
        }

        h2 {
            font-size: 16px;
            padding: 12px;
        }

        p {
            font-size: 16px;
        }

        /* Navbar links in mobile view */
        .navbar-menu {
            display: none;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .navbar-menu.is-active {
            display: flex;
        }

        .navbar-item {
            padding: 1rem;
            text-align: center;
            width: 100%;
            color: black !important;
        }

        .navbar-item:hover {
            background-color: #2a9d8f;
        }
    }