* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    user-select: none;
    height: 100%;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9; /* was #f4f6f9 */
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    height: 100%;
    /*background-image: linear-gradient(#f4f6f9, #daedf7);*/
}

.navbar {
    display: flex;
    width: 100%;
    height: 75px;
    justify-content: flex-end; /* pushes right section to the right */ /* justify-content: space-between; */
    align-items: center;
    background-color: #4597bf;
    color: white;
    padding: 5px 30px;
    box-shadow: 0 3px 0px #2c3e50;/*box-shadow: 0 1px 1px rgba(111, 0, 255, 0.4); /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
    position: relative;/* position: sticky; */
    top: 0;
    z-index: 100;
}

.navbar .logo {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    min-width:100px;
    position: absolute;
    top: -20px;
    left: 1%; /* was 50% */
    /*transform: translateX(-50%);*/
}

.navbar .logo img {
    width: 120px; /* was 100px */
    height: auto;
    display: block;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.container {
    max-width: 80%;
    min-height: 60px;
    margin: 30px auto;
    padding: 20px;
    flex: 1; /* Allows content to grow dynamically */
}

.slogan {
    /*width: 100%;*/
    display: flex;
    justify-content: center;
    margin-bottom: -130px;
    /*margin-top: 250px;*/
}

.container .slogan img {
    width: 650px;
    height: auto;
    display: block;
}

#container3D {
    position: fixed;
    /*inset: 0;*/
    top: 0;
    right: 23%;
    width: 50%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}

.register-btn-container, .login-btn-container {
    display: flex;
    justify-content: center;
    /*transition: transform 0.3s ease-in-out;*/
}

.register-btn-container a:hover, .login-btn-container a:hover {
    background-color: #764EA0;
    box-shadow: 0 0 20px #c6a7e7;
    /*transform: scale(1.02);*/
}

.login-btn-main {
    /*width: 25%;*/
    text-decoration: none;
    padding: 10px;
    background-color: #5f3c85;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.register-btn-main {
    /*width: 25%;*/
    text-decoration: none;
    padding: 10px;
    background-color: #5f3c85;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.left-side {
    /*font-family: 'Bodoni MT';*/
    font-size: 25px;
    /*font-weight: bold;*/
    max-width: 50%;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 15px;
    top: 0px;
    /*background-color: red;*/
    padding: 35px;

    /*text-align: right;*/

    /*background-color: #f4f6f9;
    border-radius: 20px;*/
}

.left-side p {
    margin-bottom: 80px;
    text-align: center;
}

.right-side {
    /*font-family: 'Bodoni MT';*/
    font-size: 20px;
    /*font-weight: bold;*/
    max-width: 40%;
    display: flex;
    position: absolute;
    right: 25px;
    top: 500px;
    /*background-color: green;*/
    padding: 35px;
    /*text-align: center;*/
}

.left-btm {
    display: flex;
    width: 220px;
    height: 100px;
    position: absolute;
    bottom: 50px;
    left: 50px;
    object-fit: contain;
    justify-content: space-between;
    z-index: 11;
}

.left-btm img {
    width: 100px;
    height: 100px;
}

.terms-back-btn {
    width: 60px;
    height: 60px;
    display: flex;
    position: absolute;
    left: 25px;
    top: 120px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #2c3e50;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    animation: pulse 1s ease-in-out infinite; /* Name, duration, timing function, repeat count */
}

.terms-back-btn img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.footer {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #B8D0EC;*/
    background-color: #4597bf;
    color: white;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 -3px 0px #2c3e50;
    padding-left: 50px;
    padding-right: 50px;
}

.footer a {
    color: white;
    padding-right: 10px;
}

.footer a:hover {
    color: #2c3e50;
}

.footerlinks {
    position: absolute;
    right: 20px;
}

a {
    text-decoration: none;
}

.edu-main {
    max-width: 80%;
    min-height: 60px;
    margin: 30px auto;
    padding: 20px;
    flex: 1; /* Allows content to grow dynamically */
    background-color: #c1abda;
}