* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Urbanist', sans-serif;
}

/* ── Header / Navbar ── */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 9999px;
    margin: auto;
    height: 0px;
    z-index: 99999;
}
#home {
    position: fixed;
    height: 80px;
    left: 0;
    right: 0;
    width: 9999px;
    z-index: 99;
    box-sizing: border-box;
}
#home::before {
    content: '';
    position: fixed;
    height: 80px;
    left: 0;
    right: 0;
    width: 9999px;
    z-index: 99;
    box-sizing: border-box;
}
.navbar {
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    right: 0;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    max-width: 1300px;
    margin: 10px auto;
    border-radius: 50px;
    background-color: #003D5A30;
    backdrop-filter: blur(10px);
    padding: 0 50px;
    height: 80px;
    scroll-behavior: smooth;
    transition: 0.7s;
}
.nonebar {
    display: flex;
    position: relative;
    background-color: transparent;
    width: 109px;
}
.menu-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}
.menu-linksbtn ul {
    list-style: none;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    gap: 16px;
    width: auto;
    text-align: center;
}
.menu-linksbtn a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.5px;
}
.menu-linksbtn a:hover,
.menu-linksbtn a.active {
    color: #95E5FF;
    transition: 0.2s ease-out;
    letter-spacing: 1px;
}
.menusocial {
    right: 0;
}
.menusocial ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
    width: auto;
    text-align: center;
    gap: 8px;
}
.menusocial ul a {
    text-decoration: none;
    cursor: pointer;
    align-items: center;
}
.menusocial li:first-child {
    display: inline-flex;
    background-color: #003D5A;
    border-radius: 20px;
}
.menusocial a:first-child {
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    align-items: center;
    padding: 8px 0px;
    width: 119px;
    text-decoration: none;
}
.menusocial li svg {
    fill: #003D5A;
}
.menusocial li:hover svg {
    fill: #95E5FF;
    transition: 0.1s;
}
.menusocial li:first-child:hover {
    background-color: #95E5FF;
    transition: 0.1s;
}
.menusocial li a:first-child:hover {
    color: #003D5A;
    transition: 0.1s;
    font-weight: 600;
}
.btn-toggle { display: none; }
.logo-m {
    z-index: 9;
    display: block;
    width: 70px;
    top: -25px;
    left: 0;
    position: absolute;
}
.logow { display: none; }

/* ── Mobile navbar ── */
@media only screen and (max-width: 1100px) {
    .logow {
        z-index: 9;
        display: block;
        width: 65px;
        top: 15px;
        left: 25px;
        position: absolute;
    }
    .logo-m { display: none; }
    .box {
        width: fit-content;
        height: 0vh;
        position: relative;
        text-align: left;
        z-index: 1;
        opacity: 0;
        left: -500px;
        pointer-events: none;
        transition: 0.3s;
    }
    .btn-toggle {
        position: absolute;
        right: 30px;
        top: 0px;
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 15px;
        height: 15px;
    }
    .btn-toggle .bar {
        height: 3px;
        width: 100%;
        border-radius: 20px;
    }
    .active_box {
        opacity: 1;
        left: 0px;
        pointer-events: fill;
    }
    .menu_icon_box {
        display: block;
        z-index: 2;
        width: fit-content;
        height: auto;
        margin: 25px;
        position: absolute;
        border-radius: 4px;
        cursor: pointer;
    }
    .line1, .line2, .line3 {
        width: 20px;
        height: 3px;
        margin: 4px 0px;
        background-color: #fff;
        border-radius: 50px;
        transition: 0.2s;
    }
    .active .line1 {
        transform: translate(0px, 11px) rotate(45deg);
    }
    .active .line2 {
        opacity: 0;
    }
    .active .line3 {
        transform: translate(0px, -11px) rotate(-45deg);
    }
    .menu-links {
        background-color: #003D5A;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0px;
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 32px;
        height: auto;
        padding-bottom: 16px;
    }
    .menusocial li:first-child {
        background-color: #95E5FF;
        display: inline-flex;
        padding: 2px 4px;
        gap: 8px;
        border: 1px solid #003D5A;
        border-radius: 20px;
    }
    .menusocial a:first-child {
        color: #003D5A;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        align-items: center;
    }
    .menusocial li svg {
        fill: #95E5FF;
    }
    .menusocial li:hover svg {
        fill: #fff;
    }
    .menusocial li:first-child:hover {
        background-color: #fff;
    }
    .menusocial li a:first-child:hover {
        color: #003D5A;
    }
    .menu-links ul {
        display: block;
    }
    .menu-links a {
        padding: 0.1rem 0rem;
    }
    .menu-linksbtn {
        display: flex;
        margin-bottom: 10px;
    }
    .menusocial ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin: auto;
        margin-bottom: 10px;
    }
    .menusocial ul a {
        text-decoration: none;
        cursor: pointer;
        align-items: center;
    }
    .menu-links.active {
        margin: auto;
        margin-top: 70px;
        display: flex;
    }
    .menusocial.active {
        display: flex;
    }
    .navbar {
        padding: 0px;
        margin-top: 0;
        backdrop-filter: none;
        background-color: #003D5A;
        border-radius: 0;
    }
    #home {
        display: flex;
        flex-direction: column;
        max-width: 1400px;
        text-align: right;
        align-items: end;
    }
    .nonebar {
        width: auto;
    }
}
