/* Flex column fallback for mobile */
@media screen and (max-width: 768px) {
/* Global overflow management */
:root{
    --font-color: #000;
    --accent1: #aca9a9;
    --accent2: dodgerblue;
    --sans-serif: "Inter", sans-serif;
    --accent3: #0ed9f0;
    --dark-shade: #092657;
    --text-highlight: #15222d;
    --white: #ffffff;
}
*{
    overflow-x: hidden;
    box-sizing: border-box;
}
.box{
    margin: 8px;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    flex-direction: column;
}
.box i{
    padding: 14px;
    font-size: 20px;
    color: var(--white);
    border-radius: 80px;
    background-color: var(--accent2);
    border: 1px solid var(--accent2);
}
body{
    color: #000;
    font-size: 18px;
    width: 100%;
    overflow-x: hidden;
}    
/* Responsive Typography */
h1, h2, h3, h4, h5, h6, p{
    word-wrap: break-word;
}
/* Navigation */
.navbar #menulist{
    left: 0;
    top: 70px;
    width: 100%;
    z-index: 9;
    display: none;
    padding: 1rem 0;
    position: absolute;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: .48s ease-in-out;
    -webkit-backdrop-filter: blur(10px);
    background-color: var(--dark-shade);
}
.navbar .logo img{
    z-index: 14;
    height: 90px;
    width: auto;
    display: block;
}
.navbar #menulist.active{
    display: flex;
}
#menu-icon{
    z-index: 14;
    right: 30px;
    display: block;
    position: relative;
    transition: .48s ease-in-out;
}
#close-icon{
    z-index: 14;
    right: 30px;
    display: none;
    position: relative;
}
#signup-btn{
    display: none;
}
#menu-toggle{
    display: block;
}
/* hero section */
.hero-section{
    height: auto;
    font-size: 26px;
    padding: 80px 20px;
    margin-top: 100px;
}
.hero-section .hero-content{
    width: 90%;
    height: 80%;
    padding: 40px;
    align-items: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.628); /* glass edge */
}
.hero-section .hero-content h1{
    font-size: 32px;
}
.services .service-container, .results .result-container, .process .process-container, .about-us .about-container, .footer .footer-container{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
/*Contact*/
/* Contact */
.contact{
    padding: 60px 20px;
}
.contact .contact-container{
    display: flex;
    flex-direction: column;
}
.contact .contact-container .left, .contact .contact-container .right{
    width: 100%;
    padding: 20px;
}
.contact .contact-container .left .info{
    margin: 8px;
    width: 100%;
    display: flex;
    padding: 10px;
    line-height: 10px;
}
/*Footer*/
.footer .footer-container .footer-box{
    width: 100%;
    border: none;
    flex-direction: column;
    border-bottom: 1px solid var(--text-highlight);
}





