@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary-color: #007a33;
    /* NP Green */
    --primary-light: #00a344;
    --primary-dark: #005a26;
    --secondary-color: #ffce00;
    /* NP Yellow */
    --secondary-light: #ffd733;
    --secondary-dark: #e6b800;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-dark: #0a2510;
    --bg-light: #f8faf8;
    --white: #ffffff;
    --header-height: 80px;
    --container-width: 1320px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
}

.reveal-up.active {
    animation: fadeInUp 0.8s forwards;
}

.reveal-left.active {
    animation: slideInLeft 0.8s forwards;
}

.reveal-scale.active {
    animation: fadeInScale 0.8s forwards;
}

/* Parallax Effect Utility */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 991px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

.icon-svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    text-align: justify;
    text-justify: inter-word;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    /* Ensure all grid layouts stack properly on mobile */
    [style*="display: grid"],
    [style*="display: flex"] {
        gap: 20px !important;
    }

    /* Fix any two-column layouts */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Header */
.top-header {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-links a {
    font-size: 12px;
    font-weight: 700;
    margin-right: 15px;
    color: var(--text-color);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-color);
}

.find-station {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #ccc;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Language Dropdown */
.lang-switcher-wrapper {
    margin-right: 15px;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background: #f0f2f0;
    color: var(--text-color);
    padding: 0 16px;
    height: 36px;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    line-height: 1;
}

.lang-dropbtn:hover {
    background: #e6e9e6;
    border-color: var(--primary-color);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 140px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 8px 0;
    z-index: 1100;
    margin-top: 5px;
    border: 1px solid #eee;
    overflow: hidden;
    animation: fadeInScale 0.3s ease-out;
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

.lang-dropdown-content a {
    color: var(--text-color);
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.lang-dropdown-content a:hover {
    background-color: rgba(0, 122, 51, 0.05);
    color: var(--primary-color);
    padding-left: 20px;
}

.lang-dropdown-content a.active {
    background-color: var(--primary-color);
    color: #fff;
}

.lang-dropdown-content a .flag-icon {
    font-size: 16px;
}

.lang-dropbtn .flag-icon {
    font-size: 14px;
    line-height: 1;
}

.lang-text {
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    display: inline-block;
}

.lang-dropbtn .fa-chevron-down {
    font-size: 10px;
    opacity: 0.7;
    margin-left: 2px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.lang-dropdown:hover .lang-dropbtn .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.top-right {
    display: flex;
    align-items: center;
}

.main-header {
    background: var(--secondary-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.sticky {
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: transparent;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* Perfectly stable height */
    transition: all 0.4s ease;
}

.main-header.sticky .container {
    height: 70px;
    /* Subtle decrease on scroll */
}

.site-branding.logo img {
    height: 55px;
    width: auto;
    transition: all 0.4s ease;
}

.main-header.sticky .site-branding.logo img {
    height: 48px;
}

/* WP Style Navigation */
.main-navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 32px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item>a {
    color: var(--primary-color);
}

/* Dropdown Support */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 0 0 12px 12px;
    padding: 15px 0;
    z-index: 999;
    list-style: none;
    margin: 0;
    border-top: 4px solid var(--primary-color);
    transform: translateY(20px) scale(0.98);
    backdrop-filter: blur(10px);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sub-menu li a {
    padding: 12px 25px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #444 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.2s ease;
}

.sub-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
    opacity: 0.7;
}

.sub-menu li a:hover {
    background: rgba(0, 122, 51, 0.05);
    color: var(--primary-color) !important;
    padding-left: 32px !important;
}

.sub-menu li a:hover i {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Mega Menu */
.mega-menu-item {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    border-top: 4px solid var(--primary-color);
    transform: translateY(20px);
}

.mega-menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-box {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
    padding: 10px;
    border-radius: 8px;
}

.mega-menu-box:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.mm-img {
    width: 100px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.mm-content h4 {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.mm-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 0;
    }

    .mega-menu-item.active .mega-menu {
        display: block;
    }

    .mega-menu-container {
        padding: 10px 25px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mm-img {
        width: 60px;
        height: 60px;
    }
}

/* Hero Slider */
.hero-slider {
    height: 520px;
    position: relative;
    overflow: hidden;
    background-color: #f0f4f0;
}

@keyframes zoomInSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    animation: zoomInSlow 10s linear infinite alternate;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.8s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h2 {
    font-size: 42px;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    font-weight: 800;
}

.slide-content p {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-slider .arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-slider .arrow {
    background: rgba(0, 122, 51, 0.4);
    backdrop-filter: blur(5px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider .arrow:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* News Ticker */
.news-ticker-section {
    background: var(--bg-dark);
    border-bottom: 4px solid var(--secondary-color);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.ticker-container {
    display: flex;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.ticker-title {
    background: var(--secondary-color);
    color: var(--bg-dark);
    padding: 6px 18px;
    font-weight: 800;
    font-size: 13px;
    margin-right: 30px;
    white-space: nowrap;
    border-radius: 4px;
    position: relative;
}

.ticker-title::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid var(--secondary-color);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.ticker-content-wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scrolling 40s linear infinite;
}

.ticker-item {
    padding-right: 60px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
}

.ticker-item::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 24px;
    margin-right: 15px;
}

@keyframes ticker-scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-content-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* HSSEQ General Styles */
.hsse-intro {
    margin-bottom: 40px;
}

.hsse-intro h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-highlight {
    background: #fdf2e8;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.hsse-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hsse-links {
        grid-template-columns: 1fr;
    }
}

.hsse-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.hsse-card:hover {
    transform: translateY(-5px);
}

.hsse-card i {
    font-size: 40px;
    color: var(--primary-color);
}

.hsse-card h4 {
    margin: 0;
    font-size: 18px;
    color: var(--secondary-color);
}

.iso-certs {
    text-align: center;
    margin-top: 60px;
}

.iso-certs img {
    max-width: 300px;
    height: auto;
}

/* HSSEQ Internal Pages Styles */
.inner-page-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .inner-page-grid {
        grid-template-columns: 1fr;
    }
}

.hsse-policy-content {
    line-height: 1.8;
    color: #444;
}

.hsse-policy-content h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 28px;
    text-transform: uppercase;
}

.hsse-policy-content p {
    margin-bottom: 20px;
}

.hsse-policy-content ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.hsse-policy-content ol li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.signature-img {
    max-width: 200px;
    margin: 20px 0;
}

.ceo-name {
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.hsse-vision-intro {
    line-height: 1.8;
    color: #444;
    margin-bottom: 50px;
}

.hsse-vision-intro p {
    margin-bottom: 20px;
    font-size: 17px;
}

/* Quick Links Sidebar Shared */
.quick-links-sidebar {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.quick-links-sidebar h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 15px;
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    font-weight: 600;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* HSSEQ Vision Sections */
.vision-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.vision-item-simple img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
}

.vision-1000-section {
    background: #fdfdfd;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
}

.vision-1000-section h2 {
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.vision-1000-section h2 span {
    color: var(--primary-color);
    font-weight: 900;
}

.vision-grid-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vision-item-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vision-item-card:hover {
    transform: translateY(-10px);
}

.vision-item-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 991px) {

    .vision-grid-card,
    .vision-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .vision-grid-card,
    .vision-grid-simple {
        grid-template-columns: 1fr;
    }
}

.section-title h4 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 28px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title[style*="text-align: left"] h2::after {
    left: 0;
    transform: none;
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-content h1 {
    font-size: 32px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 0.5px;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 122, 51, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 51, 0.3);
    color: white;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.service-card img {
    width: 80px;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Page Banner */
.page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--white);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs ul li::after {
    content: '>';
    margin-left: 10px;
    color: var(--primary-color);
}

.breadcrumbs ul li:last-child::after {
    content: '';
}

.breadcrumbs ul li a {
    color: var(--text-light);
}

.breadcrumbs ul li a:hover {
    color: var(--primary-color);
}

/* Content Layout */
.page-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.main-content h2 {
    font-size: 32px;
    display: flex;
    gap: 10px;
}

.main-content h2 span {
    color: var(--primary-color);
}

.mission-vision {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.mission-vision h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.value-card {
    padding: 20px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.value-card ul {
    text-align: left;
    font-size: 14px;
    list-style: disc;
    padding-left: 20px;
}

.val-good {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.val-orig {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: #1a1a1a !important;
}

.val-integ {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.val-lead {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: #1a1a1a !important;
}

/* Management Cards */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    height: 480px;
    background-size: cover;
    background-position: center top;
    position: relative;
    border-bottom: 5px solid var(--secondary-color);
    transition: var(--transition);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-info p {
    font-size: 14px;
    color: var(--text-lighter);
    font-weight: 500;
}

/* Sidebar */
.sidebar-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar-nav li {
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.sidebar-nav li a {
    font-size: 14px;
    display: block;
}

.sidebar-nav li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* WP Core Blocks & Alignments */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.wp-block-image {
    margin-bottom: 1.5em;
}

.wp-block-image figcaption {
    font-size: 0.8em;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5em;
}

/* Widget Styles */
.widget {
    margin-bottom: 2em;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.2em;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget ul li:last-child {
    border-bottom: none;
}

/* Toggles */
.custom-toggle {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.toggle-header {
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-header h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.toggle-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border-top: 1px solid transparent;
    background: #fdfdfd;
}

.toggle-content.active {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

.toggle-header.active {
    background: #f9fbf9;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    text-align: center;
    border-radius: 5px;
}

.post-date span {
    display: block;
    font-weight: 700;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 50px 0;
    border-radius: var(--radius-md);
    margin: 30px auto;
    width: calc(100% - 40px);
    max-width: var(--container-width);
}

.newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 700;
}

.newsletter form {
    display: flex;
    gap: 15px;
    width: 50%;
}

.newsletter input {
    flex: 1;
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    border: none;
    font-family: 'Inter', sans-serif;
}

.newsletter button {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 10px 30px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.newsletter button:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-image: linear-gradient(rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.94)), url('../assets/images/footer-bg.png');
    background-size: cover;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 30px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* Responsive */
@media (max-width: 991px) {

    .welcome-grid,
    .services-grid,
    .news-grid,
    .footer-grid,
    .content-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter .container {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter form {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .welcome-grid,
    .services-grid,
    .news-grid,
    .footer-grid,
    .content-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .main-navigation {
        display: none;
    }
}

/* --- Mobile Nav Toggle --- */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .site-branding.logo img {
        height: 45px !important;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        z-index: 99999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid #f0f0f0;
    }

    .main-navigation.active {
        display: block !important;
    }

    .main-navigation ul {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .main-navigation ul li {
        width: 100%;
    }

    .main-navigation ul li a {
        padding: 15px 25px;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
        text-transform: none;
    }

    /* Mobile Dropdowns */
    .menu-item-has-children .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        box-shadow: none;
        border-top: none;
        background: #f9fbf9;
        transform: none;
        padding: 0;
        border-radius: 0;
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
    }

    .menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sub-menu li a {
        padding: 12px 40px !important;
        border-bottom: 1px solid #eee;
    }

    .main-header .container {
        justify-content: space-between !important;
        padding: 0 20px;
        position: relative;
        height: 70px !important;
    }

    /* Additional Global Mobile Fixes */
    .top-header {
        display: none;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .newsletter form {
        flex-direction: column;
        width: 100% !important;
    }

    .management-grid {
        grid-template-columns: 1fr;
    }

    .team-img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero-slider .arrows {
        display: none;
    }

    .ticker-title {
        display: none;
    }
}

/* --- Go To Top Button --- */
#go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#go-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.mobile-only-lang {
    display: none !important;
}

.mobile-only-station {
    display: none !important;
}

@media (max-width: 991px) {

    .mobile-only-lang,
    .mobile-only-station {
        display: block !important;
        border-top: 1px solid #eee;
        background: #f9fbf9;
    }

    .mobile-lang-toggle i {
        transition: transform 0.3s ease;
    }
}

/* Mobile Responsive Fixes for Custom Sections */
@media (max-width: 991px) {

    /* Executive Chairman Section */
    .executive-chairman [style*="grid-template-columns: 350px 1fr"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .executive-chairman [style*="flex: 0 0 350px"] {
        flex: 1 !important;
        max-width: 300px;
        margin: 0 auto;
    }

    /* NP Sierra Leone HQ Section */
    .np-sl-headquarters [style*="grid-template-columns: 1fr 450px"] {
        grid-template-columns: 1fr !important;
    }

    .np-sl-headquarters [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Welcome Grid */
    .welcome-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* CEO Message Box */
    .mv-box {
        flex-direction: column !important;
        padding: 20px !important;
    }

    .mv-box [style*="flex: 0 0 220px"] {
        flex: 1 !important;
        width: 100% !important;
        max-width: 250px;
        margin: 0 auto;
    }

    .mv-box [style*="flex: 1"] {
        width: 100% !important;
    }

    /* Product Grid */
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    /* Management Team Grid */
    .mgt-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr !important;
    }

    /* Ensure proper spacing on mobile */
    section {
        padding: 40px 0 !important;
    }

    /* Adjust font sizes for better mobile readability */
    .executive-chairman h2,
    .np-sl-headquarters h2 {
        font-size: 24px !important;
    }

    .executive-chairman h4,
    .np-sl-headquarters h4 {
        font-size: 12px !important;
    }

    /* Fix inline flex/grid styles */
    [style*="display: flex; gap:"] {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 576px) {
    .mgt-grid {
        grid-template-columns: 1fr !important;
    }

    /* Smaller padding on very small screens */
    .container {
        padding: 0 10px !important;
    }

    section {
        padding: 30px 0 !important;
    }
}

/* Custom Hamburger Color */
.menu-toggle {
    color: var(--primary-color) !important;
}

.menu-toggle i {
    color: var(--primary-color) !important;
}