        /* Ensure the page takes full viewport height and use flexbox */
        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            background-color: #dadada;
            font-family: sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        .main-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 50px;
        }

        h1 {
            color: #333333;
            font-size: 70px;
            text-align: center;
            margin-block-start: 0.1em;
            margin-block-end: 0.1em;
        }

        form {
            margin-block-start: 0.1em;
            margin-block-end: 0.1em;
            padding: 20px;
            background: #00adee;
            border-radius: 8px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
            max-width: 500px;
            width: 90%;
        }

        form label {
            color: #333333;
            display: block;
            margin: 10px 0 5px;
            text-align: left;
        }

        form input {
            width: 100%;
            padding: 8px;
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        form button {
            padding: 10px 20px;
            background-color: #333333;
            ;
            /* Black login button */
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            display: block;
            margin: 0 auto;
        }

        form button:hover {
            background-color: #222222;
        }

        p {
            margin-top: 20px;
            color: #333333;
            /* Same as the title */
            text-align: center;
        }

        p a {
            color: #000;
            /* "Register here" link in black */
            text-decoration: none;
        }

        p a:hover {
            text-decoration: underline;
        }

        /* Modal Background */
        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }


        .logo {
            display: inline-block;
            padding-right: 10px;
        }

        /* Modal Content */
        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            /* padding: 20px; */
            /* border: 1px solid #888; */
            width: 100%;
            max-width: 400px;
            border-radius: 8px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
        }

        /* Form Header within Modal (holds title and close button) */
        .form-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .form-header h2 {
            margin: 0;
            font-size: 24px;
            color: #333333;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #aaa;
        }

        .close-btn:hover {
            color: #333333;
        }

        /* Modal Form */
        form {
            background: #1f2937;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        form label {
            color: #fff;
            margin-top: 12px;
            text-align: left;
        }

        form input {
            width: 100%;
            padding: 8px;
            margin-bottom: 10px;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        form button[type="submit"] {
            padding: 10px 20px;
            background-color: #00adee;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin: 10px auto 0;
        }

        form button[type="submit"]:hover {
            background-color: #222222;
        }

        /* Sticky Navbar */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            background-color: #1f2937;
            padding: 10px 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            font-family: sans-serif;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: bold;
            font-size: 24px;
            color: #fff;
        }

        .nav-left a {
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s ease;
        }

        .nav-left a:hover {
            color: #333333;
        }

        .nav-right a {
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
            font-size: 16px;
            transition: color 0.2s ease;
        }

        .nav-right a:hover {
            color: #333333;
        }

        /* Hero Splash Section */
        .hero {
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-logo {
            width: 500px;
            max-width: 60vw;
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
            animation-delay: 0.5s;
        }



        .about-section {
            height: 100vh;
            width: 100%;
            background-color: #00adee;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            box-sizing: border-box;
        }

        .about-content {
            max-width: 700px;
            text-align: center;
            color: #ffffff;
        }

        .about-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        #about-section .about-content p {
            color: #ffffff !important;
            font-size: 17px;
            line-height: 1.6;
            text-align: left;
        }

        .about-divider {
            width: 60px;
            height: 4px;
            background: #ffffff;
            border: none;
            margin: 0 auto 24px auto;
            border-radius: 2px;
        }

        .login-section {
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            box-sizing: border-box;
        }

        .login-heading {
            font-size: 36px;
            color: #1f2937;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Fade-In Keyframes */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }