/* PART 1 */

/* ========================= */
/* MODERN NAVBAR */
/* =========================*/

html,
body {

    margin: 0;
    padding: 0;

    overflow-x: hidden;

    width: 100%;
}


.all-navbar {

    min-height: 72px;
    height: auto;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid #dbeafe;

    box-shadow:
        0 4px 24px rgba(14, 165, 233, 0.06);

    position: sticky;
    top: 0;
    z-index: 999;

    max-width: 100%;

    width: 100%;


    margin: 0;

    left: 0;

    right: 0;

    box-sizing: border-box;


    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 25px;
}


/* LEFT */

.all-nav-left {

    display: flex;
    align-items: center;

    gap: 40px;
    flex: 1;
}

/* LOGO */

.all-logo {

    display: flex;
    align-items: center;
    gap: 12px;

    cursor: pointer;
}

.all-logo img {

    height: 100px;
}

.all-logo-text {
    font-size: 34px;
    font-weight: 700;

    background: linear-gradient(135deg,
            #0284c7,
            #2563eb);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: -0.8px;
}

.all-logo {
    transition: transform 0.3s ease;
}


.all-logo:hover {
    transform: translateY(-2px);
}


/* LINKS */
.all-nav-links {
    display: flex;
    align-items: center;
    gap: 42px;

    list-style: none;

    margin: 0;
    padding: 0;

    position: relative;
}

.all-navbar::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            #0ea5e9,
            #2563eb,
            #0ea5e9);
}



/* PART 2 */

/* DROPDOWN */

.all-dropdown {

    position: relative;
}


.all-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px !important;

    border-radius: 12px !important;

    background: transparent !important;

    border: none !important;

    cursor: pointer;

    transition: all 0.3s ease;
}

.all-dropdown-trigger:hover {
    background: #eff6ff !important;
}

.all-nav-links li {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* SIMPLE LINK */
.all-simple-link {

    display: flex;
    align-items: center;
    justify-content: center;

    height: 44px;

    padding: 10px 14px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    color: #1e293b;

    transition: all 0.3s ease;
}

.all-simple-link:hover {

    color: #0284c7;

    background: #eff6ff;
}


/* ARROW */
.all-dropdown-arrow {

    font-size: 10px;

    transition: transform 0.3s ease;

    color: #64748b;
}

.all-dropdown:hover .all-dropdown-arrow {
    transform: rotate(180deg);
}

/* DROPDOWN MENU */

.all-dropdown-menu {

    position: absolute;
    top: 42px;
    left: -10px;
    min-width: 230px;

    border-radius: 18px;
    padding: 12px;
    list-style: none;
    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);
    transition: 0.3s ease;

    -webkit-backdrop-filter: blur(12px);


    background: linear-gradient(180deg,
            #f8fbff,
            #eef6ff);

    border: 1px solid #bfdbfe;

    box-shadow:
        0 18px 40px rgba(37, 99, 235, .12);

    backdrop-filter: blur(16px);
}

.all-simple-link::after,
.all-dropdown-trigger::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #0284c7;

    transition: all 0.3s ease;

    transform: translateX(-50%);
}

.all-simple-link:hover::after,
.all-dropdown-trigger:hover::after {

    width: 70%;
}

.all-simple-link,
.all-dropdown-trigger {
    position: relative;
}







/* PART 3 */

/* SHOW */

.all-dropdown-menu {

    pointer-events: none;
}

.all-dropdown:hover .all-dropdown-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}


/* DROPDOWN LINKS */

.all-dropdown-menu a {

    display: flex;
    align-items: center;

    padding: 14px 16px;

    border-radius: 12px;

    text-decoration: none;

    color: #334155;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.3s ease;
}

.all-dropdown-menu a:hover {

    background: linear-gradient(135deg,
            #dbeafe,
            #eff6ff);

    color: #2563eb;

    transform: translateX(6px);

    border-radius: 10px;
}

/* RIGHT */
.all-nav-right {

    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 18px;
}



/* SECONDARY BTN */

.all-nav-secondary-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    border-radius: 14px;

    background: #eff6ff;

    border: 1px solid #dbeafe;

    text-decoration: none;

    color: #0369a1;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.all-nav-secondary-btn:hover {

    background: #dbeafe;

    color: #0284c7;

    transform: translateY(-2px);
}





/* PART 4 */

/* PRIMARY BTN */

.all-nav-primary-btn {

    border: none;

    padding: 13px 28px;

    border-radius: 14px;

    background: linear-gradient(135deg,
            #0284c7,
            #2563eb);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.2px;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 12px 24px rgba(37, 99, 235, 0.22);

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.all-nav-primary-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 30px rgba(37, 99, 235, 0.30);
}

.all-nav-primary-btn {
    position: relative;
    overflow: hidden;
}

.all-nav-primary-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: rgba(255, 255, 255, 0.25);

    transform: skewX(-25deg);

    transition: 0.6s;
}

.all-nav-primary-btn:hover::before {

    left: 140%;
}

/* RESPONSIVE — base rules; see landing-fixes.css for layout overrides */

.all-nav-mobile-toggle {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dco-dropdown.dropdown {
    display: none;
}

.dco-dropdown.dropdown.show {
    display: block;
}

@media (max-width: 768px) {

    .all-nav-secondary-btn:not(.corporate-login-btn) {

        display: none;
    }

    .all-logo-text {

        font-size: 28px;
    }

    .all-nav-primary-btn {

        padding: 12px 20px;
    }

    .all-logo img {
        height: 42px;
    }
}

.all-nav-item,
.all-dropdown-trigger {

    display: flex;
    align-items: center;

    height: 44px;

    padding: 10px 14px;

    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;

    color: #1e293b;

    transition: all 0.3s ease;
}