html {
    height: 100vh;
    /* height: 100dvh; */
    width: 100vw;
    /* width: 100dvw; */
    font-size: 7px;
    scroll-behavior: smooth;
    /* Custom cubic-bezier easing */
    scroll-behavior: cubic-bezier(0.42, 0, 0.58, 1);
    scrollbar-color: red black;
    overflow-x: hidden;
}
body {
    width: 100%;
    height: 2000px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


header {
    color: aliceblue;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    z-index: 2;
    position: fixed;
    width: 100%;
    justify-content: center;
    background-color: #000000e5;
    border-bottom: 1px solid red;
}

h1 {
    position: relative;
    top: 0;
    margin: 0;
    font-size: 4rem;
    text-shadow: #8382a1 2px 2px 4px;
}

h2 {
    font-size: 3rem;
}

b {
    font-size: 1.8rem;
}

.statementSpan, p {
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
    border-radius: 4px;
    font-family: 'Tilt Neon', sans-serif;
}

.statementSpan {
    padding: 7px;
    margin-bottom: 39px;
    transform: rotate(-9deg);
    transition: all 2.5s ease-out;
    text-decoration: underline;
}


/*  top nav styling */
nav {
    font-size: 1.8rem;
    text-wrap: nowrap;
    margin-top: 13px;
    margin-left: 6%;
}

.statementSpan {
    font-size: 2rem;
}

/* SPAN SLIDE IN EFFECT ----------------------------------------------*/
#one, #two, #three {
    position: relative;
    transition: left 0.5s ease;
    left: -100%;
}

/* -------------------------------------------------------------------- */


#focusHome {
    color: #cc007c;
}

.para-text, #content-bottom-paragraph {
    width: 85%;
    line-height: 17px;
    padding: 3%;
    text-align: left;
    font-size: 1.6rem;
}

.para-text {
    border-bottom: red solid 6px;
}

.para-text-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
}

#name_text {
    font-size: 15px;
    background-color: transparent;
}

.title_text {
    font-size: 18px;
}

.underline-keyPoints {
    text-decoration: underline;
    text-decoration-color: #b03a71;
    margin-bottom: 5px;
}

/* ------------------------------------------------------------------- */

.cta-button {
    width: 200px;
    height: 60px;
    border-radius: 13px;
    text-shadow: black 3px 3px;
    background: linear-gradient(to right, #10f4ff, #06ff8a);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    outline: none;
    border: none;
    margin-top: 15px;
}
  
.cta-button:hover {
    /* Make the button slightly larger and darker on hover */
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* -------------------------------------------------------------------- */

/* ---------------------------------------- ANIMATIONS -------------------------- */

@keyframes robotAnimation {
    0% {
    }
    50% {
        transform: translateY(0); /* Raise head to upright position */
    }
    60%, 70% {
        transform: translateY(0) skewY(-4deg) rotate(-5deg); /* Slight look upwards */
    }
    70%, 80% {
        filter: blur(20px); /* Slight look downwards */
        opacity: 0.3;
    }
    100% {
        transform: translateY(0) rotate(0); 
    }
}

@keyframes stairsAnimation {
    0% {
    }
    25% {
        left: -290px;
    }
    65% {
        left: -200px;
    }
    90% {
        left: -100px;
    }
    100% {
        left: -50px;
    }
}

/* -------------------------------------------------------------------------------------- */

.robot-image {
    height: 100vh;
    width: 100vw;
    filter: grayscale(0%);
    background-image: url('../pictures/Robot/Remove-bg.ai_1699181279996.png');
    transform: translateX(100vw) translate3d(260px, 50px, 270px) rotateY(180deg);
    position: fixed;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    z-index: 0;
    animation: robotAnimation 4s ease-in-out 0.5s forwards;
    transition: filter 1.5s ease-in-out, width 1s ease;
}

.pop-effect span {
    animation: pop 0.5s ease-in-out forwards;
    opacity: 0;
}

.pop-effect span:nth-child(1) {
    animation-delay: 0.1s;
}
  
.pop-effect span:nth-child(2) {
animation-delay: 0.2s;
}
  
.pop-effect span:nth-child(3) {
animation-delay: 0.3s;
}

@keyframes pop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.stairs-img {
    position: fixed;
    z-index: -1;
    top: 0;
    left: -30px;
    object-fit: fill;
    animation: stairsAnimation 4s;
    transition: left ease-in-out 1s;
}

.main-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

.main-content-top, .main-content-bottom {
    text-align: center;
    padding: 9px;
    color: aliceblue;
    flex-grow: 1;
}

.main-content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(to bottom,
    #ff8a0000, #e52e7199);
    overflow: hidden;
}

.top-nav-a {
    text-decoration: none;
    color: aliceblue;
    padding: 10px;
    font-family: 'Tilt Neon', sans-serif;
}

nav a.top-nav-a:hover, footer > a:hover {
    color: #0088cc;
}

/* --------------------------------  Footer Styling  ----------------------------------------------- */
.fa-brands {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 5px;
}
#linkedin {
    color: fuchsia;
}
#twitter {
    color: cornflowerblue;
}
#footer-socials {
    margin: 10px auto;
}
#email-link {
    font-size: 1.7rem;
    color: #e7e3df;
    font-family: 'Tilt Neon', sans-serif;
    padding: 3px;
    text-decoration: none;
}
footer {
    background-color: rgba(57, 57, 232, 0.63);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 7px;
}
.footer-msg {
    background-color: rgba(0,0,0,0.7);
    border-radius: 4px;
    transform: rotate(3deg);
    width: 60%;
    margin: 0 auto;
    font-size: 2.1rem;
}

footer > a {
    font-size: 2.3rem;
    color: aliceblue;
    text-decoration: none;
}
/* ---------------------------------------------  Services Page ---------------------------------- */
.content-main-wrapper {
    background-color: rgba(0,0,0,0.4);
    border-radius: 5px;
    height: 500px;
    margin-top: 100px;
}

.section-h1 {
    font-size: 2rem;
}

/* font-family: 'Tilt Neon', sans-serif; */
/* font-family: 'Black Ops'  */


/* Homepage sidebar styling -------------------------------------------- */

#mobile-menu-header {
    color: bisque;
}

.sidebar-menu > ul {
    padding-left: 0;
}
.sidebar-menu > ul > li:hover  {
    font-weight: bold;
}    
.sidebar-menu > ul > li > a {
    text-decoration: underline;
    color: azure;

}

.smallMenu-list-item {
    list-style: none;
    padding: 5px 1px;
}

.smallMenu-list-item:hover {
    background-color: rgba(255, 0, 0, 0.115);
}

/* HAMBURGER ICON STYLING */
#hamburger-menu {
    width: 20px;
    height: 20px;
    display: block;
    background: linear-gradient(to bottom, red, #280E6199 20%, transparent 20%, transparent 40%, red 40%, #280E6199 60%, transparent 60%, transparent 80%, red 80%, #280E6199 100%);
    cursor: pointer;
    border: none;
}

/* SLIDE IN TRANSITION EFFECT */
.sidebar-menu {
    position: absolute;
    top: 57px;
    left: -770px; /* Start off-screen */
    width: 100%;
    transition: 0.3s; /* Slide-in duration */
    background-color: #000000;
    margin-left: 0;
    border-bottom: solid 1px darkred;
}

.show {
    position: absolute;
    left: 0;
}

figure {
    width: 100vw;
    background-image: linear-gradient(to bottom, #0b0c0dfa, #332e5900);
    margin-top: 73px;
    border-top-width: 1px;
    padding-bottom: 10px;
}

figcaption {
    width: 85%;
    background-image: linear-gradient(to right, #c2149d, #ae00a6, #9400b0, #7100ba, #3712c4);
    font-family: 'Tilt Neon', sans-serif;
    font-size: 1.4rem;
    color: whitesmoke;
    font-weight: bold;
    margin: 0 auto;
    padding: 4px;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
}

figcaption:hover {
    background: black;
    color: red;
}

#spaceImage {
    filter: hue-rotate(7deg);
    width: 95%;
    border-radius: 3px;
    margin-top: 63px;
    object-fit: contain;
    margin-bottom: 9px;
  	opacity: 0.5;
}

@media screen and (min-width: 500px) {
    html {
        font-size: 13px;
    }

    .para-text, #content-bottom-paragraph {
        line-height: 30px;
    }
}


@media screen and (max-width: 768px) {
    header {
        justify-content: space-around;
    }
    #larger-device-menu {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */


/* below was 700px */
@media screen and (min-width: 769px) {
    #hamburger-menu {
        display: none;
    }
    .footer-msg {
        width: 43%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 900px) {
    .para-text {
        width: 43%;
    }
    #content-bottom-paragraph {
        width: 53%;
    }
}

@media screen and (min-width: 1100px) {
    .footer-msg {
        width: 29%;
    }
    #content-bottom-paragraph {
        width: 47%;
    }
}

@media screen and (max-width: 1200px ) {
    .stairs-img {
        width: auto;
    }
}

@media screen and (min-width: 1800px) {
    .stairs-img {
        width: 120%;
    }
}