body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    /* background-color: rgb(238, 238, 238); */
    background-color: white;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
} 
.backdrop {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
} 
.indexHeader {
    position: absolute;
    top: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 7vh;
    padding: 0;
    margin: 0;
    background-color: transparent;
    transition: background-color 0.3s ease, position 0.3s ease;
}
.indexHeader.sticky {
    position: fixed; 
    background-color: white; 
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); 
}
.indexHeader .indexLogo {
    width: fit-content;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, yellow, pink, skyblue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
}
.indexHeader .indexMenuContainer {
    width: 70%;
    height: 100%;
    padding: 0 1.5rem;
    margin: 0;
    margin-left: auto;
    display: flex;
    justify-content: right;
    align-items: center;
}
.indexHeader .indexMenuContainer .menuHeadingContainer {
    display: inline-block;
    padding: 0;
    height: 100%;
    position: relative;
}
.indexHeader .indexMenuContainer .menuHeadingContainer .menu-heading {
    cursor: pointer;
    display: inline-block;
    font-weight: 450;
    color: white;
    font-size: 1rem;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.indexHeader .menuOptions {
    position: absolute;
    top: 3rem;
    left: 1rem;
    z-index: 1;
    border-radius: 3px;
    box-shadow: 0px 0px 5px 0px gray;
    max-width: 25rem;
}
.indexHeader .menu-option {
    position: relative;
    background-color: white;
}
.indexHeader .menu-option .menu-eachOption {
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: rgb(86, 86, 86);
    font-weight: 350;
    width: 9rem;
}
.indexHeader .menu-option i {
    float: right;
}
.indexHeader .menu-option .menu-eachOption:hover {
    background-color: rgb(221, 245, 245);
    color: black;
    font-weight: 550;
}
.submenuOptions {
    position: absolute;
    left: 102%;
    top: 0;
    width: 12rem;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 0px 5px 0px gray;
}
.submenuOptions .submenu-option {
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: rgb(86, 86, 86);
    font-weight: 350;
}
.submenuOptions .submenu-option:hover {
    background-color: rgb(221, 245, 245) !important;
    color: black !important;
    font-weight: 550 !important;
}



.indexHeader .indexProfileContainer {
    width: 16%;
    height: 100%;
    padding: 0 1.5rem;
    margin: 0;
    margin-left: auto;
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
}
.indexHeader .indexProfileContainer .profileName, .indexHeader .indexProfileContainer .profileLogin {
    cursor: pointer;
    display: inline-block;
    font-weight: 550;
    color: rgb(221, 245, 245);
    font-size: 1.2rem;
    padding: 0 0.5rem;
}
.indexHeader .indexProfileContainer .profileImage {
    cursor: pointer;
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
}
.indexHeader .indexProfileContainer .profileImage img {
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    border-radius: 25px;
}
.indexHeader .profileOptions {
    position: absolute;
    top: 3rem;
    right: 1rem;
    z-index: 1;
    background-color: white;
    width: 10rem;
    transition: right 0.3s ease-in-out;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px gray;
}
.indexHeader .prof-option {
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: gray;
    font-weight: 550;
}
.indexHeader .prof-option:hover {
    background-color: rgb(221, 245, 245);
    color: black;
    font-weight: 700;
}



.indexBG-image {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgb(9, 44, 115), rgba(72, 72, 80, 0));
}
/* .indexBG-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    z-index: -1;
} */
.indexBG-image .index_aesthetics {
    position: absolute;
    z-index: 1;
}
.aes-bulb {
    top: 15%;
    left: -1%;
    width: 10%;
    height: 10rem;
    animation: zoomOut 1.5s ease-in-out forwards;
}
.aes-stars1 {
    top: 37%;
    left: 1%;
    width: 4rem;
    height: 5rem;
    animation: zoomOut 1.5s ease-in-out forwards;
}
.aes-stars2 {
    top: 37%;
    left: 5%;
    width: 2rem;
    height: 2.5rem;
    animation: zoomOut 1.5s ease-in-out forwards;
}
.aes-form1 {
    top: 20%;
    right: 0;
    width: 10rem;
    height: 10rem;
    animation: rotateForm1 1.5s ease-in-out forwards;
}
.aes-form2 {
    top: 37%;
    right: 1%;
    width: 7rem;
    height: 7rem;
    animation: rotateForm2 1.5s ease-in-out forwards;
}
.aes-form3 {
    top: 48%;
    right: 3%;
    width: 4rem;
    height: 4rem;
    animation: rotateForm3 1.5s ease-in-out forwards;
}
@keyframes zoomOut {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}
@keyframes rotateForm1 {
    0% {
        transform: scale(0.5);
        transform: rotate(0deg);
    }
    100% {
        transform: scale(1.3);
        transform: rotate(-15deg);
    }
}
@keyframes rotateForm2 {
    0% {
        transform: scale(0.5);
        transform: rotate(0deg);
    }
    100% {
        transform: scale(1.3);
        transform: rotate(15deg);
    }
}
@keyframes rotateForm3 {
    0% {
        transform: scale(0.5);
        transform: rotate(0deg);
    }
    100% {
        transform: scale(1.3);
        transform: rotate(-15deg);
    }
}
.indexBG-image .index_aesthetics img {
    width: 100%;
    height: 100%;
}
.indexBG-image .centerPart {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.indexBG-image .centerPart .bigText {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}
.indexBG-image .centerPart .smallText {
    font-size: 1.2rem;
    font-weight: 450;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}
.indexBG-image .centerPart #accessFormsBtn {
    cursor: pointer;
    font-size: 1.1rem;
    background-color: orangered;
    color: white;
    font-weight: 600;
    padding: 0.75rem 3rem;
    transition: 0.2s ease-in-out;
}
.indexBG-image .centerPart #accessFormsBtn:hover {
    background-color: white;
    color: orangered;
    transform: scale(1.05);
    box-shadow: 2px 2px 7px 0px black;
}


.smartformUses {
    height: 40rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem auto;
}
.smartformUses .fileContainer {
    width: 40%;
    height: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.smartformUses .fileContainer .videoContainer {
    width: 84%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid gainsboro;
    box-shadow: 0px 0px 10px 1px gainsboro;
    position: relative;
}
.smartformUses .fileContainer .videoContainer video {
    position: absolute;
    top: -0.1rem;
    left: 0;
    width: 100%;
    height: 100%;
}
.smartformUses .textContainer {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem 6rem;
}
.smartformUses .textContainer .textHeading {
    font-weight: 700;
    letter-spacing: 0.1rem;
    font-size: 2.5rem;
    margin: 1rem auto;
}
.smartformUses .textContainer .textContent {
    color: gray;
    font-size: 1.5rem;
    margin: 1rem auto;
    font-weight: 350;
}
.smartformUses .textContainer .textBtn {
    cursor: pointer;
    color: cornflowerblue;
    font-weight: 600;
    margin: 1rem auto;
    width: 100%;
}