/* Global styles (header, footer, navigation) */

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: black;
    font-family: 'Roboto';
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

/* global header */
header {
    position: fixed;
    width: 100%;
    padding: 30px 50px 0 50px;
    box-sizing: border-box;
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
}

header.sticky {
    padding-top: 0;
    background-color: #0c0c16;
   /* box-shadow: 0 3px 8px rgba(255, 255, 255, 0.15);  /* Smaller white glow on scroll */
    opacity: 1;
}

header .logo {
    display: none;
}

header .logo img {
    height: 40px;
}

header.sticky .logo {
    display: block;
}

header nav {
    height: 50px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .menu-wrapper {
    display: block;
}

/* hide from non-mobile sizes */
header ul li#mobile-menu-logo,
header .mobile-popup-footer,
header ul li .material-icons-outlined,
header .menu-popup-overlay {
    display: none;
}

header .hamburger {
    display: none;
    border: none;
    background: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
}

header ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

header ul li {
    margin: 0 12px;
}

header ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    color: white;
}

header ul li a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    header {
        padding: 0;
    }

    header .logo {
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 7px 0 7px 15px;
        z-index: 10;
    }

    header .logo.sticky {
        display: flex;
    }

    header .logo img {
        height: 60px;
    }

    header .hamburger {
        display: block;
        margin-right: 15px;
        position: relative;
        z-index: 10000;
    }

    header nav {
        width: 100vw;
        height: auto;
        margin: 0;
        padding: 0;
    }

    header .menu-wrapper {
        width: 100%;
        height: 100vh;
        position: absolute;
        display: none;
        top: 0;
        opacity: 0;
        transition: all 0.4s ease-in-out;
        z-index: 100;
    }

    header .menu-wrapper.popup-open {
        display: block;
        opacity: 1;
    }

    header .menu-popup-overlay {
        width: 100%;
        height: calc(100vh - 50px);
        background: rgba(0, 0, 0, 0.8);
        display: block;
        position: relative;
        top: 50px;
    }

    header .menu {
        height: 100vh;
        width: calc(100vw - 50px);
        margin: 0;
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        background: #1c3132;
        overflow: hidden;
    }

    header ul::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1px; /* Width of the border */
        height: 100vh;
        background: linear-gradient(
          to bottom,
          #000 0%,
          #888 35%,
          #222 50%,
          #888 80%,
          #222 100%
        );
        z-index: 999; /* Ensure it’s above other elements */
      }

    header ul::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 900px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 0, 0, 0.1), transparent);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
    }

    header ul li {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 5px 20px 5px 30px;
        margin: 0;
        text-transform: uppercase;
    }

    header ul li .material-icons-outlined {
        color: white;
        display: inline-block;
        font-size: 1.3rem;
        margin: 0;
        padding: 0;
    }

    header ul li#mobile-menu-logo {
        display: block;
        padding: 0;
        margin-top: 10px;
        margin-bottom: 50px;
        text-align: center;
    }

    header ul li#contact-link {
        margin-top: 50px;
    }

    header ul li a {
        padding: 12px 18px;
        width: 100%;
        font-size: 1em;
    }

    header ul li#contact-link a {
        width: auto;
        padding: 9px 20px;
        border: 2px solid rgba(255, 255, 255, 0.7);
        border-radius: 8px;
    }

    header .mobile-popup-footer {
        width: calc(100vw - 50px);
        text-align: center;
        display: block;
        position: absolute;
        bottom: 15px;
        left: 0;
        color: #999;
        font-size: 0.9rem;
        z-index: 1000;
    }
}

/* global header end */


main {
    position: relative;
    z-index: 0;
}

footer {
    position: relative;
    padding: 0 50px;
    background: #2C2C2C;    
}

section {
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
}

h1.lead-sm {
    margin-top: 20px;
    font-size: 1.2rem;
    text-align: center;
}

h1.lg-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 30px 0 30px 0;
}



footer .details {
    padding: 50px 0;
    display: flex;
    border-bottom: 1px solid #525252;
    flex-direction: row;
    color: white;
}

    .details #company {
        width: 400px;
        margin-right: 30px;
    }

        .details #company h3 {
            font-weight: normal;
            font-size: 1rem;
        }

    .details #sitemap {
        flex: 1;
        background: #1C1C1C;
    }

footer .copyright {
    padding: 30px 0;
    color: #858585;
    font-size: 0.8rem;
}