/* Color Variables */
:root {
    --text-color: #fff;                      /* White for text */

    --theme-color: #1E3E62;
    --darker-theme-color: #112439;
    --background: #0B192C;
    --accent-color: #FF6500;
}

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

html, body {
    overflow-x: hidden;  /* Prevent horizontal scrolling */
    width: 100%;         /* Ensure the width is 100% */
}

body {
    max-width: 100vw;
    max-height:100vh;
    overflow-x: hidden;
}


body, button, h1, input, textarea {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 200;
    font-style: normal;
    overflow: hidden;
}

::selection {
    background: var(--theme-color);
}

a {
    text-decoration: none;
    color: white;
}

p {
    font-family: "Noto Sans", sans-serif; 
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-align: center;
}

h1 {
    font-size: 120px;
    text-align: center; 
    line-height: 0.9;
}


.accent-color {
    color: var(--accent-color) !important;
}


button {
    padding: 20px;
    color: var(--text-color);
    border: none;
    outline: none;
    font-size: 30px;
}


button a {
    text-decoration: none;
    color: var(--text-color);
}

.primary-button {
    background-color: var(--accent-color);
}

.secondary-button {
    background-color: var(--theme-color);
}

.getstarted-button {
    background-color: var(--text-color);
    
}

.getstarted-button a {
    color: var(--background);
}


.small-box {
    border-bottom: 3px solid var(--accent-color);
}

.card1s {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
}

img {
    color: white;
}

.icon {
    width: 80px;
    aspect-ratio: 1/1;
}

.card1 {
    background-color: var(--theme-color);
    border-radius: 10px;
    padding: 20px;
    flex: 0 1 400px;

    display: flex;
    flex-direction: column;
}

.card1 p {
    text-align: left;
}

/* LABEL AND BUTTON STYLES */
.orange-square {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    background-color: var(--accent-color);
}

.orange-label {
    background-color: var(--accent-color);
    padding: 8px;
    padding-top:1%;
    margin: none;
    color: var(--text-color);
    font-weight: normal;
    display:flex;
    justify-content:center;
    align-items:center;
    
    
}

/* .orange-label h1, h2, h3, h4, h5, h6 {
    position: relative;
    top: -50%;
} */


.horizontal {
    display: flex;
    justify-content: start;
    gap: 10px;
    /* gap: 10px; */
}


header {
    /* background-color: var(--theme-color);
    color: var(--text-color); */
    position: fixed;
    width: 100%;

    z-index: 9;
}


/* Scroll Snapping */
.container {
    /* scroll-snap-type: y mandatory; */
    overflow-y: scroll;
    height: 100dvh;
}



.section {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2dvh;
    font-size: 2rem;
    scroll-snap-align: start;
    background-color: var(--background);
    color: var(--text-color);
    padding: 20px 30px;
}

.container > :nth-child(1) {
    padding-top: 120px;
}


nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 108px;
    padding: 0 20px;
    background-color: var(--theme-color);
    border-bottom: #0B192C solid 4px;
}
.logo {
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
    /* letter-spacing: 4px; */
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    
    /* width: 300px; */
    /* justify-content: space-evenly; */
}

.logo img {
    height: 60px;
    aspect-ratio: 1/1;
}

.logo div h1 {
    font-weight: 600;
}

.logo div h3 {
    font-weight: 100;
}
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 50%;
}
.nav-links li{
    list-style: none;
}
.nav-links a{
    text-decoration: none;
    color: white;
    /* letter-spacing: 3px; */
    /* font-weight: bold; */
    font-size: 20px;

    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
}

#contact-button a {
    background-color: var(--accent-color);
    padding: 10px;
}

.nav-links :hover{
    /* color: var(--accent-color); */
    text-shadow: 1px 1px 15px var(--accent-color);
}
.burger {
    display: none;
}
.burger div{
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px){
    body{
        overflow-x: hidden;
    }
    .nav-links {
        position: absolute;
        right: 0px;
        min-height: calc(100dvh - 104px);
        top: 104px;
        background-color: var(--theme-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        width: 50%;
        transform: translateX(100%);
        transition: transform -0.5s ease-in;
        border-left: var(--background) solid 4px;
    }
    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
        cursor: pointer;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line-1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line-2 {
    opacity: 0;
}
.toggle .line-3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


footer {
    background: var(--darker-theme-color);
    color: white;
    padding: 30px;
}

.footer_h {
    display: flex;
    justify-content: flex-end;
    gap: 20%;
}

footer h1 {
    font-size: 30vw;
    height: 20vw;
    line-height: 23vw;
}

footer .footer-links {
    display: flex;
    justify-content: space-between;
}

footer .footer-links * {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

footer .footer-links div h2{
    font-size: 40px;
}

footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

footer ul {
    list-style-type: none;
    margin-left: 10px;
    font-size: 25px;
}

footer img {
    width: 20vw;
    height: 20vw;
}

footer{
    text-align: center;
}


/******************* RESPONSIVE MEDIA QUERIES ********************/
@media screen and (max-width: 700px){
    .bigtext{
        font-size: 100px;
    }
}
@media screen and (max-width: 500px){
    .bigtext{
        font-size: 80px;
    }
    .card1 {
        flex: 0 1 280px;
    }

}

@media screen and (max-width: 415px) {
    .container h2 {
        font-size: 45px;
    }
    p {
        font-size: 20px;
    }
    footer h1 {
        font-size: 80px;
    }
    footer img {
        height: 80px;
        width: 80px;
    }
    footer .footer-links {
        flex-direction: column;
        gap: 25px;
    }
    footer .footer-links > * {
        width: 80vw;
    }
    
}

