
:root {
    --primary-color: #0F2F76;
    --secondary-color: #EAE10F;
    --secondary-blue: #1DB6FE;
    --accent: #1DB6FE;
    --compliment: #7ee1fa;
    --muted: #6b7280;
    --background-color: #ebfbff;
    --card: #0b1220e7;
    --glass: rgba(255, 255, 255, 0.164);
    --glass-accent: #67e5e9be;
    --glass-blue: rgba(8, 8, 197, 0.904);
    --glass-light-blue: rgb(79, 132, 231);
    --max-width: 1200px;
    --radius: 12px;
    --gap: 18px;
    --white-rumphi: white;
    --bg-main: #ffffff;
    --bg-sub: hsl(221, 100%, 64%);
    --white-text: white;
    --text-color: rgb(218, 245, 255);


    --overlay-dark: rgba(7, 7, 114, 0.884);
    --overlay-light: rgba(5, 157, 245, 0.753);

    font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #e6eef8;
}

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

html,
body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    /* padding-top: 80px; */
}

header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px
}


/* NAV BAR LEFT LOGO CSS */

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}


.logo .logo-image-container {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent), var(--compliment));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(255, 77, 109, 0.12)
}

.logo-image-container {
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    object-position: center;
}

.msih-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.msih-logo {
    width: 25%;
    justify-self: center;
    align-self: center;
}
/*^^^^^^^^^^^^^^^^^^^^^*/
/*NAV BAR LEFT LOGO CSS*/
/*^^^^^^^^^^^^^^^^^^^^^*/

.navbar{
    background-color: transparent;
    width: 100vw;
}

nav.navbar.scrolled, .sub-page {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    /* background-color: rgba(255, 255, 255, 0.767); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    box-shadow: 1px 1px 2px grey;
}

.navbar.scrolled .nav-btn, .sub-page .nav-btn {
    color: var(--card);
}

.navbar.scrolled .nav-btn.sign-in, .sub-page .nav-btn.sign-in {
    color: var(--white-text);
}

.nav-btn {
    background: var(--glass);
    padding: 10px 14px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    color: var(--white-text);
}


.nav-btn.active {
    background: var(--glass);
    color: var(--white-text);
    padding: 10px 14px;
    /* border-radius: 10px; */
    border-bottom: 2px solid var(--secondary-color);
    cursor: pointer
}

.nav-btn:hover{
    color: var(--secondary-color);
}

.nav-btn.sign-in {
    background: linear-gradient(90deg, var(--glass-blue), var(--glass-light-blue));
    /* color: #081018; */
    color: var(--text-color);
    font-weight: 600;
    border: none
}

.navbar-toggler {
    height: 40px;
    /* width: 40px; */
    border-color: var(--compliment);
    background-color: transparent;
    /* background: linear-gradient(240deg, var(--accent), var(--compliment)); */
}
/* Remove Bootstrap toggler border & focus styles */
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    position: relative;
    transition: 0.3s;
}

/* Create top and bottom lines */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    /* background-color: white; */
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar a:focus,
.navbar button:focus{
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px
}


/* GENERIC CONTENT */

.generic-hero-container {
    display: flex;
    position: relative;
    height: 70vh;
    width: 100vw;
    background-color: var(--primary-color);
    background: url(./components/abstract-bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


/* GENERIC HERO START */
.generic-hero-overlay {
    position: absolute;
    background: linear-gradient(45deg, var(--overlay-dark) 2%, var(--overlay-light) 98%);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.generic-hero-content-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1rem;
}

.generic-hero-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-text);
}

.question-heading {
    font-size: 5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;

}

.generic-hero-icon {
    font-size: 6rem;
}

.generic-down-arrow {
    margin-top: 4rem;
    font-size: 2rem;
}


/* GENERIC HERO END */


/* REUSABLE CLASSES */

.top-most {
    z-index: 500;
}

.text-center {
    text-align: center;
}

.text-blue{
    color: var(--primary-color);
}

.text-bright-blue{
    color: var(--secondary-blue);
}

.text-yellow{
    color: var(--secondary-color);
}

.center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.spc-btwn {
    justify-content: space-between;
}

.outline-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--white-text);
}

.outline-stroke-blue {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
}

.glass-card {
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.288);
}



footer {
    position: relative;
    background: url(./components/abstract-bg-2.jpg), no-repeat;
    background-size: cover;
    background-position: center;
    height: 20vh;
    width: 100vw;
}

.footer-overlay {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(2px);
    background: linear-gradient(0deg, var(--overlay-dark), var(--overlay-light) 90%);

}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    color: var(--white-text);
    width: 100%;
    height: 100%;
}


@media (max-width:980px) {
    #navMenu {
        margin-top: 1rem;
    }
    .nav-btn{
        backdrop-filter: blur(3px);
        background-color: rgba(20, 20, 245, 0.493);
        border: 2.5px solid white;
    }

    .navbar.scrolled .nav-btn, .sub-page .nav-btn{
        backdrop-filter: blur(1px);
        background-color: var(--glass);
        border: 2px solid var(--glass-light-blue);

    }
    .navbar.scrolled .nav-btn.active, .sub-page .nav-btn.active {
        border: 2px solid var(--secondary-color);

    }
    .nav-btn {
        /* width: 50vw; */
        min-width: 80vw;
        text-align: center;
    }
    .question-heading {
        font-size: 3rem;

    }
}


@media (max-width: 450px) {
    .logo-words {
        display: none;
    }
}

