.material-icons {
    font-size: 8px;
    color: oklch(44.6% 0.03 256.802);
    unicode-bidi: isolate;
}

.material-symbols-outlined {
    unicode-bidi: isolate;
    color: oklch(44.6% 0.03 256.802);
    font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.bg-primary {
    color: white;
    background-color: #045290 !important;
}

h4 {
    font-size: 24px;
}

@media (min-width: 769px) {
    h4 {
        font-size: 30px
    }

    body {
        font-family: "Poppins", sans-serif;
        line-height: 1.7;
        font-weight: 400;
        font-size: 16px;
        color: #6A7282;
    }

    .header-title {
        font-family: "Poppins", sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #364153;
    }
}

@media (max-width: 768px) {
    body {
        font-family: "Poppins", sans-serif;
        line-height: 1.5;
        font-weight: 400;
        font-size: 14px;
        color: #6A7282;
    }

    .header-title {
        font-family: "Poppins", sans-serif;
        font-size: 22px;
        font-weight: 600;
        color: #364153;
    }
}

.database-content,
.database-content * {
    font-family: 'Poppins', sans-serif !important;
    color: #6A7282 !important;
}

.database-content-mbl * {
    font-family: 'Poppins', sans-serif !important;
    color: #fff !important;
}

.database-content p {
    margin: 0 0 14px 0;
}

.database-content a > span {
    color: #0079AC !important;
}

.database-content p:has(> span:only-child) {
    margin-bottom: 6px;
}

.header-title-color:hover .header-title {
    color: white
}

.text-primary {
    color: #007bff !important
}

a.text-primary:focus,
a.text-primary:hover {
    color: #0056b3 !important
}

.nav-header {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: oklch(44.6% 0.03 256.802);
}

/*================= RESET ================= */
.main-nav,
.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================= TOP LEVEL ================= */
.main-nav > ul {
    display: flex;
}

/* ONLY top-level menu items */
.main-nav > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 1px 20px; /* small padding */
}

/* ================= ALL LI ================= */
.main-nav li {
    position: relative;
    white-space: nowrap;
}

/* ================= LINKS ================= */
.main-nav li > a {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* ================= FIRST DROPDOWN ================= */
.main-nav li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    font-size: 13px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #045290;
    color: white;
    display: none;
    z-index: 1000;
}

/* ================= DROPDOWN ITEM PADDING ================= */
.main-nav li ul li > a {
    padding: 8px 18px;
}

/* ================= NESTED DROPDOWN ================= */
.main-nav li ul li > ul {
    top: 0;
    left: 100%;
}

/* ================= SHOW ON HOVER ================= */
.main-nav li:hover > ul {
    display: block;
}

/* ================= HOVER STYLE ================= */
.main-nav li:hover {
    background: #f3f4f6;
    color: oklch(44.6% 0.03 256.802);
}

/* ================= ARROWS (MAIN + NESTED) ================= */

/* space for arrow */
.main-nav li {
    padding-right: 10px;
}

/* TOP LEVEL DROPDOWN → DOWN ARROW */
.main-nav > ul > li:has(> ul)::after {
    content: "keyboard_arrow_down";
    font-family: "Material Symbols Outlined";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    pointer-events: none;
}

/* NESTED DROPDOWN → RIGHT ARROW */
.main-nav ul ul li:has(> ul)::after {
    content: "keyboard_arrow_down";
    font-family: "Material Symbols Outlined";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    pointer-events: none;
}

/* ================= OPTIONAL SMOOTHNESS ================= */
.main-nav li > ul {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.main-nav li:hover > ul {
    opacity: 1;
    transform: translateY(0);
}

/* Hide the Google Translate top banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* Prevent the body from being pushed down by the banner */
body {
    transform: none !important;
    margin-top: 0 !important;
}

/* Hide the 'Powered by Google' branding if desired */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}
