body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center; /* Center vertically */
}

.background {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh; /* Full viewport height */
}

.background img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Maintain aspect ratio */
}

html, body, h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
}

/* -------------- NAV BAR --------------- */

#navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    background-color: #fff;
    border-radius: 32px;
    padding: 10px;
    margin: 20px 0px 0 20px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

#navbar-logo {
    padding: 6px 25px 6px 10px;
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #0000fb;
    text-decoration: none;
}
#navbar-links {
    display: flex;
    flex-direction: row;
}

.navbar-item {
    padding: 12px 16px;
    text-decoration: none;
    color: #0000fb;
}

.navbar-item:hover {
    color: #fff;
    background-color: #0000FB;
    border-radius: 32px;
}
.navbar-item.active {
    font-weight: bold;
    cursor: default;
    background-color: transparent;
}

.navbar-item.active:hover {
    color: #0000FB;
    background-color: transparent;
}

#navbar-about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    background-color:#0000fb;
    border-radius: 32px;
    padding: 10px;
    margin: 20px 0px 0 20px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
}
.navbar-about-item {
    padding: 12px 16px;
    text-decoration: none;
    color: white;
}

.navbar-about-item:hover {
    color:#0000FB;
    background-color:white;
    border-radius: 32px;
}
.navbar-about-item.active {
    font-weight: bold;
    cursor: default;
    background-color: transparent;
}

.navbar-about-item.active:hover {
    color: white;
    background-color: transparent;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #navbar {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        height: fit-content;
        margin-left: 26%;
        text-align: center;
    }

    #navbar-links {
        flex-direction: column;
        width: fit-content;
        padding: 0 10px;
        margin: auto;
    }

    /* .navbar-item {
        width: 100%;
        padding: 12px 0px;
    } */
    #navbar-logo {
        padding: 6px 10px;
        display: block;
        font-size: 24px;
        font-weight: bold;
        color: #0000fb;
        text-decoration: none;
    }
    #navbar-about {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        height: fit-content;
        margin-left: 27%;
        text-align: center;
    }
}



/* -------------- INDEX --------------- */


/* -------------- ABOUT --------------- */

#about{
    width: 100%;
    height: fit-content;
    padding-top: 100px;
}
.about-title{
    font-size: 32px;
    font-weight: bold;
    text-align:center;
    /* padding: 100px 16px 0; */
    font-weight: bold;
    color: #F05C2A;
}
.about-text{
    background-color: #F05C2A;
    color: white;
    /* font-weight: bold; */
    width: fit-content;
    font-size: 16px;
    line-height: 1.25;
    margin: 20px 20% 0 20%;
    padding: 30px 40px;
    border-radius: 32px;
}
@media (max-width: 768px) {
    #about{
        position: absolute;
        top: 150px;
    }
    .about-text{
        padding: 20px 5% 0 5%;
        height: fit-content;
        margin: 20px 5% 20px 5%;
        padding: 30px 20px 20px 20px;
    }
}

/* -------------- CONSULTING --------------- */

#consulting {
    width: 100%;
    padding: 100px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #012641;
}
@keyframes shake {
    0% { transform: translateX(-40%) translateY(0); }
    25% { transform: translateX(-40%) translateY(-1px); }
    50% { transform: translateX(-40%) translateY(1px); }
    75% { transform: translateX(-40%) translateY(-1px); }
    100% { transform: translateX(-40%) translateY(0); }
}
/* @keyframes fade {
    100% { background: rgba(255, 255, 255, 0.2); }
    50% { background: rgba(255, 255, 255, 0.6); }
    0% { background: rgba(255, 255, 255, 0.2); }
} */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    color: #ffd900;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
    animation: shake 1s infinite;
    /* animation: fade 5s infinite; */
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.hidden {
    opacity: 0;
}
.consulting-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: white;
    position: relative;
}
/* .consulting-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: white;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
} */
.consulting-text{
    color: white;
    /* font-weight: bold; */
    font-size: 16px;
    line-height: 1.25;
    padding: 32px 20% 32px 20%;
    height: auto; 
}
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.consulting-section {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.5);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.consulting-section h2 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.consulting-section p {
    font-size: 16px;
    color: white;
    line-height: 1.5;
}
@media (max-width: 768px) {
    #consulting{
        padding-top: 250px;
    }
    .consulting-text{
        width: 90%;
    }
    .consulting-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 1200px;
    }
    .consulting-section {
        padding: 15px;
    }
    .consulting-section h2 {
        font-size: 18px;
    }
    .consulting-section p {
        font-size: 14px;
    }
}


/* -------------- CONTACT --------------- */

.contact-background {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    background-color: #1468EF;
}

.contact-background img {
}
.contact-form-container {
    position: absolute;
    top: 80px;
    left: 50px;
    /* transform: translate(-50%, -50%); */
    /* background: rgba(255, 255, 255, 0.9); */
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    width: 100%;
    max-width: 500px;
}
.contact-form-container p{
    color: white;
    font-size: 16px;
    line-height: 1.25;
}
#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
#contact-form button {
    display: block;
    font-size: 16px;
    width: fit-content;
    padding: 10px;
    background-color: #0000fb;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#contact-form button:hover {
background-color: #0000d1;
}
.contact-inputs {
}
.contact-inputs:focus{
}
.contact-inputs::placeholder {
}
@media (max-width: 768px) {
    .contact-background img {
        width: 0%;
        height: 0;
    }
    .contact-form-container {
        padding-top: 220px;
        top: 0;
        left: 0;
        width: 90%;
        max-width: 90%;
        margin-bottom: 0;
    }
    body{
        overflow: scroll;
    }
    
}



/* -------------- RESPONSIVE --------------- */

/* @media (max-width: 600px){.hide-small{display: none!important}}
@media (max-width: 992px) and (min-width: 601px){.hide-medium{display: none!important}}
@media (min-width: 993px){.modal-content{width: 900px} .hide-large{display:none!important}.sidebar.collapse{display:block!important}}
.button{
    vertical-align:middle;
    overflow:hidden;
    color:inherit; 
    background-color:inherit;
    text-align:center;
    cursor:pointer; 
}
.button:hover{
    color:#fff;
    background-color:#0000FB;
}
.left{
    float:left;
}
.right{
    float:right;
}
.small{ 
    font-size: 12px; 
}
.medium{
    font-size: 15px;
}
.large{
    font-size: 18px
} */