:root {
    --primary: #143865;
    --secondary: #dcaf5e;
    --white: #ffffff;
    --light-bg: #f4f7fb;
    --scroll-track: #dde4ef;
    --font-main: 'Poppins', sans-serif;
    --font-alt: 'Roboto', sans-serif;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 14px;
    --surface-1: #f4f7fb;
    --surface-2: #ffffff;
    --surface-3: #e8eef7;
    --border-subtle: rgba(20, 56, 101, 0.15);
    --text-primary: #0d2040;
    --text-muted: #4A5C75;
    --shadow-sm: 0 4px 15px rgba(20, 56, 101, 0.08);
    --shadow-md: 0 8px 20px rgba(20, 56, 101, 0.1);
    --shadow-lg: 0 15px 35px rgba(20, 56, 101, 0.15);
    --shadow-hover: 0 12px 30px rgba(20, 56, 101, 0.18);
    --overlay-dark: rgba(0, 0, 0, 0.45);
    --gradient-brand: linear-gradient(135deg, #0d2040 0%, #143865 50%, #0d2040 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--scroll-track);
}

body {
    font-family: var(--font-main);
    background-color: var(--surface-1);
    color: var(--text-primary);
}

i {
    color: var(--primary);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 6px !important;
    box-shadow: 0 2px 20px rgba(20, 56, 101, 0.1), 0 1px 0 var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar a {
    color: var(--primary) !important;
}

.navbar-brand {
    display: flex;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar-nav .nav-link.on {
    font-weight: 700 !important;
    color: var(--primary) !important;
    position: relative;
}

.navbar-nav .nav-link.on::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(20, 56, 101, 0.4), 0 0 16px rgba(220, 175, 94, 0.2);
    animation: navGlow 2.5s ease-in-out infinite alternate;
}

@keyframes navGlow {
    0%   { box-shadow: 0 0 6px rgba(20, 56, 101, 0.4), 0 0 12px rgba(20, 56, 101, 0.15); opacity: 0.85; }
    100% { box-shadow: 0 0 12px rgba(20, 56, 101, 0.7), 0 0 24px rgba(220, 175, 94, 0.3); opacity: 1; }
}

@media (max-width: 991px) {
    .navbar-nav .nav-link.on::after {
        bottom: 0;
        width: 36px;
        left: 0;
    }
}

.nav-logo {
    height: 55px;
    width: auto;
    filter: brightness(1);
}

.notices-link {
    color: var(--secondary) !important;
}

.notices-dropdown {
    background-color: var(--surface-2);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 30px rgba(20, 56, 101, 0.12);
}

.notices-dropdown .dropdown-item {
    font-weight: 500;
    padding: 10px 18px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.notices-dropdown .dropdown-item:hover {
    background-color: var(--surface-3);
    color: var(--primary);
}

.dropdown-toggle::after {
    margin-left: 6px;
}

.modal-backdrop {
    z-index: 1090 !important;
}

.modal {
    z-index: 1100 !important;
}

.navbar.sticky-top {
    z-index: 1020 !important;
}

.hero {
    background: url('../images/banner.webp') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.section-title,
.sub-title {
    color: var(--primary);
    font-weight: 700;
}

.sub-title {
    font-size: 1.5rem;
}

.top-section {
    padding-top: 50px;
    background-color: transparent !important;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.service-card {
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background: var(--surface-2);
    color: var(--text-primary);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

.service-card:hover,
.service-card.service-active {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h5 {
    font-weight: 600;
    color: var(--text-primary);
}

.service-card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.service-card i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.career-form {
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.career-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 16px;
}

.career-row-full {
    margin-bottom: 16px;
}
.career-row-file {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.career-col {
    display: flex;
    flex-direction: column;
}

.req {
    color: #dc2626;
}

.branch {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.branch a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.branch a:hover {
    color: var(--primary);
}

.service-points {
    padding: 0;
    margin: 0;
    list-style: none;
}

.btn-primary {
    background-color: var(--primary);
    border: 5px solid var(--primary);
    padding: 5px;
    color: #ffffff;
    font-weight: 400;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--secondary);
    border: 5px solid var(--secondary);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
}
/* .chat-close{

} */
.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    line-height: 1.6;
    color: var(--text-primary);
}

.service-modal li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    line-height: 1.6;
    color: var(--text-primary);
}

.service-points li i {
    margin-top: 4px;
    flex-shrink: 0;
}

ul.service-points {
    list-style-type: none;
}

ul.icon {
    list-style-type: none;
}

.icon li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    color: var(--secondary);
}

.service-points li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    color: var(--primary);
}

.modal-content {
    background-color: var(--surface-2);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom-color: var(--border-subtle);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--surface-3);
}

.modal-header .modal-title {
    flex: 1;
    text-align: center;
}

.modal-header .btn-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.modal-footer {
    border-top-color: var(--border-subtle);
}

.modal-title {
    color: var(--primary);
    font-weight: 700;
    text-align: center;
}

.service-toggle {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
}

#our-branches {
    padding: 60px 0;
}

#our-branches .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

#our-branches p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

#our-branches .branch {
    background-color: var(--surface-2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#our-branches .branch:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

#our-branches .branch h5 {
    font-weight: 600;
    color: var(--primary);
}

#our-branches i {
    color: var(--primary);
}

#our-branches .branch p {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--text-muted);
}

#our-branches .map-box {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

#our-branches .map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.team-section {
    background: var(--surface-1);
}

.team-member {
    transition: 0.3s ease;
    color: var(--text-primary);
}

.team-member h5 {
    color: var(--primary) !important;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.team-img:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

#client h2,
#client h3,
#client h4,
#client .section-title {
    color: var(--primary);
    font-weight: 700;
}

#client p {
    font-family: var(--font-alt);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.client-card {
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 1.25rem;
}

.client-card i {
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.client-card h3,
.client-card h4 {
    color: var(--primary);
    font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
    .client-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary);
        background: var(--surface-3);
    }

    .client-card:hover i {
        transform: scale(1.15);
        color: var(--secondary);
    }
}

@media (hover: none) and (pointer: coarse) {
    .client-card {
        background: var(--surface-2);
        border-color: var(--border-subtle);
        box-shadow: var(--shadow-sm);
    }

    .client-card i {
        color: var(--primary);
    }
}

footer {
    background: linear-gradient(135deg, #0d2040 0%, #1a56a0 50%, #0d2040 100%);
    color: #f0e8d0;
    padding: 20px 30px 5px;
    text-align: center;
    border-top: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

footer::after {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(220, 175, 94, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

footer p.mb-1 {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(240, 232, 208, 0.9);
    letter-spacing: 0.4px;
    position: relative;
    z-index: 1;
}

footer .small {
    font-size: 0.76rem;
    color: rgba(240, 232, 208, 0.55);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.social-icons {
    position: relative;
    z-index: 1;
    margin: 8px 0;
}

.social-icons a {
    text-decoration: none;
    font-size: 22px;
    margin: 0 6px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease, background 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    color: #ffffff;
    background: var(--secondary);
    border-color: var(--secondary);
    text-shadow: none;
    box-shadow: 0 6px 20px rgba(220, 175, 94, 0.45);
}

.chat-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-float i {
    color: #ffffff !important;
}

.chat-float,
.chat-options {
    z-index: 1000;
}

.chat-float:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 56, 101, 0.35);
}

.chat-options {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.chat-option {
    background: var(--surface-2);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.chat-option:hover,
.chat-option:hover i {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* ── Close Button ── */
.chat-close {
    align-self: flex-end;
    background: var(--surface-2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.chat-close:hover {
    background: var(--primary);
    color: #ffffff;
}

.custom-arrow {
    width: 45px;
    height: 45px;
    background-color: rgba(20, 56, 101, 0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.custom-arrow:hover {
    background-color: rgba(20, 56, 101, 1);
    transform: translateY(-50%) scale(1.1);
}

.custom-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev.custom-arrow {
    left: 10px;
}

.carousel-control-next.custom-arrow {
    right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    filter: brightness(0) invert(1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-float.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(20, 56, 101, 0.7); }
    70%  { box-shadow: 0 0 0 15px rgba(20, 56, 101, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 56, 101, 0); }
}

.service-active {
    border: 3px solid var(--primary);
    border-radius: 14px;
    background-color: var(--surface-3);
    box-shadow: 0 12px 28px rgba(20, 56, 101, 0.15);
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-active h5,
.service-active p,
.service-active li,
.service-active i {
    color: var(--primary) !important;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scroll-track);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    border-radius: 10px;
}

.bg-light {
    background-color: var(--surface-3) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.form-control,
.form-select {
    background-color: var(--surface-2);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--surface-2);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(20, 56, 101, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control[type="file"] {
    color: var(--text-muted);
}

.form-control[type="file"]::file-selector-button {
    background-color: var(--surface-3);
    color: var(--primary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 4px 12px;
    transition: background 0.2s ease;
}

.form-control[type="file"]::file-selector-button:hover {
    background-color: var(--primary);
    color: #ffffff;
}


.input-group-text {
    background-color: var(--surface-3);
    border: 1px solid var(--border-subtle);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
}

.accordion-item {
    background-color: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md) !important;
    color: var(--text-primary);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--primary);
    border-left: 3px solid var(--secondary);
    box-shadow: 0 4px 20px rgba(20, 56, 101, 0.1);
}

.accordion-button {
    background-color: var(--surface-2);
    color: var(--primary) !important;
    font-family: var(--font-main);
    font-weight: 600;
    box-shadow: none;
    text-align: left;
    border-radius: var(--radius-md) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--surface-3);
    color: var(--primary) !important;
    box-shadow: inset 0 -1px 0 var(--border-subtle);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(20, 56, 101, 0.15);
}

.accordion-button::after {
    filter: invert(25%) sepia(70%) saturate(500%) hue-rotate(195deg);
}

.accordion-body {
    background-color: var(--surface-2);
    color: var(--text-muted);
    font-family: var(--font-alt);
    text-align: left;
    line-height: 1.75;
    padding: 16px 24px 20px;
}

.alert-info {
    background-color: rgba(20, 56, 101, 0.07);
    border: 1px solid rgba(20, 56, 101, 0.2);
    color: var(--text-primary);
}

.alert-info strong {
    color: var(--primary);
}

.alert-info ul li {
    color: var(--text-muted);
}

.modal-header.bg-white {
    background-color: var(--surface-3) !important;
    border-bottom: 1px solid var(--border-subtle);
}

.btn-close {
    filter: none;
    opacity: 0.6;
}

.btn-close:hover {
    opacity: 1;
}

.form-select option,
.form-control option {
    background-color: var(--surface-2);
    color: var(--text-primary);
}

.navbar-toggler-icon {
    filter: none;
}

.carousel-control-prev .fs-2,
.carousel-control-next .fs-2 {
    color: var(--text-primary) !important;
}

section {
    background-color: var(--surface-1);
}

#about {
    background-color: var(--surface-1);
}

#our-branches {
    background-color: var(--surface-1);
}

#services {
    background-color: var(--surface-1);
}

#client {
    background-color: var(--surface-1);
}

#questions {
    background-color: var(--surface-1);
}

#careers {
    background-color: var(--surface-1);
}

@media (max-width: 768px) {
    .nav-logo {
        height: 42px;
    }

    .hero {
        height: auto;
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .nav-logo {
        height: 38px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .service-card,
    .branch {
        padding: 15px;
    }

    .career-form {
        padding: 24px 18px;
    }

    .career-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .nav-logo {
        height: 34px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        padding: 6px 20px 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: left 0.35s ease;
        box-shadow: 8px 0 30px rgba(20, 56, 101, 0.15);
        z-index: 9998;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        border-right: 1px solid var(--border-subtle);
    }

    .navbar {
        overflow: visible !important;
        z-index: 9999;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        overflow: visible !important;
        max-height: none !important;
        flex-direction: column;
        gap: 12px;
    }

    .navbar-nav .nav-link {
        font-size: 1.05rem;
        padding: 10px 0;
        color: var(--primary) !important;
    }

    .navbar-toggler {
        border: 1px solid var(--border-subtle);
        outline: none;
        z-index: 9999;
        background-color: transparent;
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23143865' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        width: 30px;
        height: 30px;
        filter: none;
    }

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 9996;
    }

    body.menu-open::after {
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-nav .dropdown {
        overflow: visible !important;
        position: relative;
    }

    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        max-height: none !important;
        overflow: visible !important;
        margin-top: 6px;
        background-color: var(--surface-3);
        border: 1px solid var(--border-subtle);
    }

    .navbar-collapse .dropdown-menu {
        box-sizing: border-box;
        padding: 6px 0;
    }

    .navbar-collapse .dropdown-item {
        color: var(--text-primary);
        padding: 8px 12px;
        box-sizing: border-box;
        width: 100%;
        white-space: normal;
        word-break: break-word;
        line-height: 1.5;
    }

    .navbar-collapse .dropdown-item:hover {
        background: var(--surface-2);
        color: var(--primary);
    }

    .navbar-collapse .dropdown-toggle {
        pointer-events: auto;
    }
}