/*
 * Global Font Override — Google Sans Flex
 * Loaded AFTER all other stylesheets to ensure highest specificity.
 */

body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th, label, input, select, textarea, button,
.nav-link, .dropdown-item,
.mean-nav ul li a,
.main-menu ul li a,
.sub-menu li a,
.breadcrumb-item,
.section-title,
.featured-title,
.news-overlay-title,
.press-title,
.newsletter h3,
.filter-tab,
.page-btn,
.inner-page-hd h1 {
    font-family: 'Google Sans Flex', 'Poppins', sans-serif !important;
}

/* ================================================================
   Consistent Header & Dropdown Styles (match homepage design)
   ================================================================ */

/* Dark dropdown menu — matches homepage gradient style (desktop only) */
.desktop-nav-new .sub-menu,
.menuzord-menu .sub-menu {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.97) 0%, rgba(11, 110, 79, 0.90) 100%) !important;
    border-radius: 0 0 8px 8px !important;
    padding: 8px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
    border: none !important;
}

/* Dropdown links — white text on dark bg (desktop only) */
.desktop-nav-new .sub-menu li a,
.desktop-nav-new .sub-menu li a span,
.menuzord-menu .sub-menu li a,
.menuzord-menu .sub-menu li a span {
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 10px 22px !important;
    transition: all 0.25s ease !important;
}

/* Remove the sliding background ::after effect from inner pages */
.desktop-nav-new ul li ul li > a:after {
    display: none !important;
}

/* Dropdown hover — subtle white overlay + indent (desktop only) */
.desktop-nav-new .sub-menu li a:hover,
.desktop-nav-new .sub-menu li a:hover span,
.menuzord-menu .sub-menu li a:hover,
.menuzord-menu .sub-menu li a:hover span {
    background: rgba(255,255,255,0.08) !important;
    color: #f97316 !important;
    padding-left: 28px !important;
}

/* Top-level nav links — white text, uppercase */
.menuzord-menu > li > a {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.9) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Top-level nav hover/active — orange accent */
.menuzord-menu > li:hover > a,
.menuzord-menu > li.active > a {
    color: #f97316 !important;
}

/* Sticky header — dark background, not white */
header.sticky-shadow {
    background: rgba(10, 22, 40, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

/* Sticky header nav links stay white (not dark) */
.header.sticky-shadow ul.menuzord-menu li a {
    color: rgba(255,255,255,0.9) !important;
}
.header.sticky-shadow ul.menuzord-menu li:hover > a,
.header.sticky-shadow ul.menuzord-menu li.active > a {
    color: #f97316 !important;
}
