/* Main Premium CSS Stylesheet */

/* 1. Global Reset & Variables */
:root {
    /* Color Tokens (Government Blue Palette) */
    --primary: #0A58CA;
    /* Vibrant, modern premium blue */
    --primary-hover: #084298;
    --primary-light: rgba(10, 88, 202, 0.08);
    --primary-glow: rgba(10, 88, 202, 0.2);
    --title-color: #0F172A;
    /* Crisp dark navy */
    --secondary: #0F172A;
    /* Midnight Navy */
    --accent: #F59E0B;
    /* Vibrant Gold/Amber */
    --accent-light: rgba(245, 158, 11, 0.12);

    /* Neutral Shades (Light Theme) */
    --bg-base: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-elevated: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border: #E2E8F0;
    --border-subtle: rgba(255, 255, 255, 0.5);

    --text-main: #0F172A;
    --text-muted: #475569;
    --text-white: #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Layout Constants */
    --max-width: 1440px;
    --header-height: 62px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Outfit', var(--font-sans);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-base: 0.35s var(--ease-out-expo);

    /* Section Backgrounds (Light Theme) */
    --bg-section-news: #FFFFFF;

    /* Premium Alabaster (Very soft warm off-white) */
    --bg-section-videos: #EBFBE7;

    /* Pure White for clean reading */
    --bg-section-press: #FFFFFF;

    /* Premium Cool Ice-Blue (Very soft cool off-white) */
    --bg-section-feedback: #ECEFF7;

    /* Questionnaires section background */
    --bg-section-questionnaires: linear-gradient(135deg, #1a237e 0%, #283593 40%, #4a148c 70%, #6a1b9a 100%);
}

/* Dark Theme Variables */
.dark-theme {
    --bg-base: #0B0F19;
    --bg-surface: #121824;
    --bg-glass: rgba(18, 24, 36, 0.8);
    --border: #1E293B;
    --border-subtle: rgba(255, 255, 255, 0.08);

    --text-main: #F1F5F9;
    --text-muted: #CBD5E1;
    --text-white: #FFFFFF;

    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);

    --title-color: #FFFFFF;
    --secondary: #F1F5F9;
    --bg-elevated: #1E293B;

    /* Section Backgrounds (Dark Theme) */
    --bg-section-news: #0B0F19;
    /* Deep Dark Base */
    --bg-section-press: #101115;
    /* Deep Warm Dark */
    --bg-section-videos: #0F121C;
    /* Deep Cool Dark */
    --bg-section-feedback: #0B0F19;
    /* Deep Slate Dark */

    /* Questionnaires section background (dark theme) */
    --bg-section-questionnaires: linear-gradient(135deg, #0d1257 0%, #1a1f6e 40%, #2e0854 70%, #3b0a60 100%);
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-base);
    background-image: none;
    /* Removed noisy gradients for a cleaner base */
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

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

/* Glassmorphism Panel Template */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), var(--shadow-sm);
    transition: all var(--transition-base);
}

.glass-panel:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.6);
}

.dark-theme .glass-panel {
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-display);
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.dark-theme .btn-outline {
    color: var(--text-main);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--primary-light);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.main-header {
    height: var(--header-height);
    background-color: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-base), border-color var(--transition-base),
        box-shadow var(--transition-base), height var(--transition-base);
}

.dark-theme .main-header {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}


.main-header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.dark-theme .main-header.header-scrolled {
    background-color: rgba(18, 24, 36, 0.98);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 44px;
    height: 44px;
    background-color: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.brand-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
}

.brand-main {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* Nav Menu */
.desktop-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    margin: 0 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.02em;
}

/* Medium screens breakpoint to prevent overlap/cramping on smaller desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
    .nav-link {
        font-size: 13.5px;
        padding: 8px 12px;
    }

    .nav-menu {
        gap: 6px;
    }

    .desktop-nav {
        margin: 0 8px;
    }
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(0, 114, 255, 0.06);
}

.nav-link.active {
    color: var(--primary);
    background-color: transparent;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 4px;
}

/* Dropdown Menu */
.nav-dropdown-wrapper {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    width: max-content;
    min-width: 220px;
    padding: 10px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.nav-dropdown-wrapper:hover .dropdown-menu,
.nav-dropdown-wrapper.dropdown-open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 15px;
    /* Increased a little from 14px */
    font-weight: 500;
    color: var(--secondary);
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(4px);
}

/* Widgets area */
.header-widgets {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: none;
}

.widget-btn:hover {
    background-color: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.dark-theme .widget-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Language Switcher */
.language-dropdown-wrapper {
    position: relative;
}

.language-btn {
    width: auto;
    padding: 6px 14px;
    border-radius: 20px;
    gap: 6px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

.lang-label {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.lang-flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: inline-block;
    vertical-align: middle;
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 160px;
    padding: 8px 0;
    display: none;
    animation: fadeIn 0.2s ease;
}

.language-dropdown-wrapper:hover .language-menu,
.language-dropdown-wrapper.dropdown-open .language-menu {
    display: block;
}

.language-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.language-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-main);
    transition: background-color 0.2s ease;
}

.language-menu a:hover,
.language-menu a.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Content Container wrapper */
.content-wrapper {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 300px);
}

/* 3. Hero Dashboard Section */
.hero-section {
    position: relative;
    padding: 100px 0 120px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 144, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: -1;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-text-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.hero-text-card h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--title-color);
    margin-bottom: 20px;
}

.hero-text-card p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Stats Cards */
.hero-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 4. Section Paddings & Grids */
.section-padding {
    padding: 96px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 52px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-top: 14px;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;

    /* Vibrant Reflective Premium Gradient (High Contrast) */
    background: linear-gradient(to right,
            var(--title-color) 0%,
            var(--primary) 30%,
            #6fff01fe 45%,
            #fcf802 50%,
            #ff0000 55%,
            var(--primary) 70%,
            var(--title-color) 100%);
    background-size: 200% auto;
    color: var(--title-color);
    /* Fallback */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 6s linear infinite;
}

/* Variant for dark backgrounds (Active Questionnaires) */
.section-header h2.dark-bg-title {
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff 35%,
            #0aea1c 45%,
            #fffc55 50%,
            #ff0000 55%,
            #ffffff 65%,
            #ffffff 100%);
    background-size: 200% auto;
    color: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: 20px auto 0;
    border-radius: 4px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 600px;
}

.context-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(10, 88, 202, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
}

.context-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.btn-pill {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 144, 204, 0.25);
    transition: all var(--transition-base);
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 144, 204, 0.35);
}

.view-all-row {
    text-align: center;
    margin-top: 48px;
}

.home-news-section {
    position: relative;
    background: var(--bg-section-news);
}

.home-press-section {
    background: var(--bg-section-press);
}

.home-videos-section {
    background: var(--bg-section-videos);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.light-bg {
    background-color: rgba(148, 163, 184, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--title-color);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.section-title p {
    color: var(--text-muted);
    font-size: 15px;
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.text-link:hover {
    color: var(--primary-hover);
}

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

.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--bg-elevated);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out-expo);
}

.news-card:hover {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px var(--primary-light);
    transform: translateY(-8px);
    border-color: transparent;
}

.news-card-img {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.news-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--secondary) 0%, #0d5c32 50%, var(--primary) 100%);
    position: relative;
}

.news-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 0);
    background-size: 18px 18px;
}

.news-img-placeholder i,
.news-img-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-img img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--primary);
    backdrop-filter: blur(8px);
    color: var(--text-white);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(0, 180, 255, 0.25);
}

.news-card-content {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-card-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-content p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Enforce 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark-theme .news-card-content h3,
.dark-theme .news-card-content h3 a {
    color: var(--text-white);
}

.dark-theme .news-card-content p {
    color: var(--text-muted);
}

.card-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    transition: gap var(--transition-fast);
}

.card-action-btn:hover {
    gap: 12px;
    color: var(--primary-hover);
}

/* Split Columns */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.split-col {
    display: flex;
    flex-direction: column;
}

/* Press Card */
.press-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 16px;
}

.press-date-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
}

.p-day {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.p-month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.press-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.press-body h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.press-action-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Directories */
.directory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.directory-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

.dir-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dir-info {
    flex-grow: 1;
}

.dir-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.dir-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.dir-arrow {
    color: var(--text-muted);
}

/* 6. Video Portal UI */
.featured-player-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.featured-player-info {
    padding: 24px;
}

.featured-player-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-player-info p {
    color: var(--text-muted);
    font-size: 15px;
}

.video-playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-playlist-card {
    cursor: pointer;
    overflow: hidden;
}

.video-thumb-container {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.playlist-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-playlist-card:hover .play-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.play-icon-svg {
    color: var(--text-white);
    width: 32px;
    height: 32px;
}

.video-playlist-info {
    padding: 16px;
}

.video-playlist-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.vid-short-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* 7. Gallery Grid */
.gallery-filters-bar {
    display: flex;
    gap: 12px;
    padding: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-tab {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background-color: transparent;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--primary);
    color: var(--text-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    overflow: hidden;
}

.gallery-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 144, 204, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.zoom-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--text-white);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-info {
    padding: 16px;
}

.gallery-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
}

.gallery-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--text-white);
    font-size: 38px;
    cursor: pointer;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 80%;
    text-align: center;
}

.lightbox-img {
    max-height: 70vh;
    border-radius: 8px;
    margin: 0 auto 16px;
}

.lightbox-caption {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
}

/* 8. Public Feedback Section styling */
.feedback-section {
    padding: 80px 0 100px;
    background: var(--bg-section-feedback);
}

.feedback-card {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 60px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.feedback-header {
    text-align: center;
    margin-bottom: 32px;
}

.feedback-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feedback-header h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.feedback-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Form Styles */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.col-md-6 {
    width: 50%;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.required {
    color: #EF4444;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 44px !important;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #F8FAFC;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: all 0.2s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Star Rating widget */
.rating-form-group {
    align-items: center;
    padding: 12px 0;
}

.star-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars-row {
    display: flex;
    gap: 8px;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
}

.star-btn svg {
    width: 28px;
    height: 28px;
    color: #CBD5E1;
    fill: #CBD5E1;
    transition: all 0.2s ease;
}

.star-btn.hovered svg,
.star-btn.selected svg {
    color: #F59E0B;
    fill: #F59E0B;
}

.star-desc {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: var(--primary);
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
}

/* Alert Boxes */
.alert-box {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #135a98;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.15);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.15);
    color: #D97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* 9. Footer Section */
.main-footer {
    background-color: var(--secondary);
    /* Clean midnight navy */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    display: none;
}

.main-footer::after {
    display: none;
}

.footer-top {
    padding: 72px 0 56px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    width: 100%;
}

.logo-circle-mini {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.logo-circle-mini svg,
.logo-circle-mini i {
    width: 48px;
    height: 48px;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}

.footer-about-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.social-media-title {
    color: var(--accent) !important;
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 24px;
    margin-bottom: 12px;
    text-align: center;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    color: var(--accent);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    padding: 7px 0;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-links a i,
.footer-links a svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer-links a:hover i,
.footer-links a:hover svg {
    color: var(--accent);
    opacity: 1;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    padding: 6px 0;
}

.footer-contact-info li i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.bottom-row p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.developer-footer-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--accent) !important;
    transition: color var(--transition-fast);
}

.developer-footer-link:hover {
    color: #ffffff !important;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bottom-links {
    display: flex;
    gap: 16px;
}

.bottom-links a {
    font-size: 12px;
    color: var(--text-muted);
}

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

/* 10. Inner Banner Section */
.page-banner {
    position: relative;
    padding: 60px 0;
    background: var(--secondary);
    color: var(--text-white);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 16px 16px;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin: 4px 0 12px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

/* 11. News Details & Sidebar */
.detail-sidebar-layout {
    display: grid;
    grid-template-columns: 2.8fr 1fr;
    /* Reduced sidebar width */
    gap: 48px;
}

.detail-sidebar-layout>.main-column {
    min-width: 0;
    border-radius: 24px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 40px;
}

.detail-sidebar-layout>.sidebar-column {
    min-width: 0;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.5;
    color: var(--text-main);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: var(--text-main);
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(0, 144, 204, 0.1);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f8f9fa;
    opacity: 1;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.main-article {
    padding: 40px;
}

.article-header {
    margin-bottom: 24px;
}

.article-meta-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
}

.article-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 6px 0 12px;
}

.article-meta-row {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-featured-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    background: rgba(0, 0, 0, 0.03);
    /* slight background so transparent edges look fine */
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-body-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: justify;
}

.article-body-content p,
.main-column p,
.main-article p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-footer {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.sharing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-label {
    font-weight: 600;
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
}

.share-btn.fb {
    background-color: #1877F2;
}

.share-btn.tw {
    background-color: #1DA1F2;
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    padding: 32px;
    border: 1px solid var(--border) !important;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Dynamic Top Gradient Accent for Premium feel */
.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% auto;
    animation: sidebarWidgetGradientFlow 4s linear infinite;
    opacity: 0.9;
    z-index: 2;
}

@keyframes sidebarWidgetGradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.sidebar-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.04);
    border-color: rgba(15, 23, 42, 0.1) !important;
}

/* Dark Theme support for sidebar-widget */
.dark-theme .sidebar-widget {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow:
        0 15px 35px -5px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 20px 40px -10px rgba(255, 255, 255, 0.1);
}

.dark-theme .sidebar-widget:hover {
    box-shadow:
        0 25px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 20px 40px -10px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.dark-theme .sidebar-widget::before {
    opacity: 1;
    box-shadow: 0 0 15px var(--primary);
}

/* Widget Header styles */
.sidebar-widget h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* Premium dual-color underline */
.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.sidebar-widget h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(15, 23, 42, 0.04);
}

.dark-theme .sidebar-widget h4::before {
    background: rgba(255, 255, 255, 0.06);
}

/* Circular/rounded badge icons for widgets */
.sidebar-widget h4 svg,
.sidebar-widget h4 i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(0, 144, 204, 0.06);
    color: var(--primary) !important;
    margin-right: 2px;
}

.dark-theme .sidebar-widget h4 svg,
.dark-theme .sidebar-widget h4 i {
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-glow) !important;
}

/* Specific widgets colors/styles override */
.active-questionnaires-widget h4 svg {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981 !important;
}

.recent-questionnaires-widget h4 svg {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444 !important;
}

.archive-widget h4 svg {
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1 !important;
}

.search-widget h4 svg {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B !important;
}

.sidebar-search-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background-color: #ffffff;
}

.sidebar-search-form {
    display: flex;
}

.sidebar-search-form input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    background-color: var(--bg-surface);
    color: var(--text-main);
}

.sidebar-search-form button {
    padding: 10px 14px;
    border: none;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dark-theme .related-item {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.related-item:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(15, 23, 42, 0.1);
}

.dark-theme .related-item:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 10px 20px rgba(255, 255, 255, 0.05);
}

.related-thumb {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.related-item:hover .related-thumb {
    transform: scale(1.05);
}

.related-info h5 {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--secondary);
    margin: 0;
    transition: color 0.2s ease;
}

/* Polished styling for archive and questionnaire lists */
.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.archive-list li a {
    text-decoration: none;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14.5px;
}

.archive-list li a:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(15, 23, 42, 0.1);
}

.dark-theme .archive-list li a {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .archive-list li a:hover {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.archive-list li.active a {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 144, 204, 0.3);
}

.archive-list li.active a span,
.archive-list li.active a .archive-count {
    color: white !important;
}

.archive-list li.active a i {
    color: white !important;
}

.archive-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.archive-left i {
    color: var(--primary);
    transition: color 0.3s ease;
}

.archive-list li a:hover .archive-left i {
    color: var(--accent);
}

.archive-count {
    background: rgba(15, 23, 42, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.dark-theme .archive-count {
    background: rgba(255, 255, 255, 0.1);
}

.dark-theme .related-info h5 {
    color: rgba(255, 255, 255, 0.9);
}

.related-item:hover .related-info h5,
.related-item:hover .related-info h5 a {
    color: var(--primary) !important;
}

.dark-theme .related-item:hover .related-info h5,
.dark-theme .related-item:hover .related-info h5 a {
    color: var(--primary-glow) !important;
}

.related-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Questionnaire status badges */
.days-left-badge {
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981 !important;
}

.ended-badge {
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444 !important;
}

/* 12. Press Releases List Layout */
.press-row-card {
    display: flex;
    padding: 32px 36px;
    margin-bottom: 20px;
    gap: 32px;
    border-left: 4px solid transparent;
    transition: all var(--transition-base);
}

.press-row-card:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.press-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-light), rgba(0, 144, 204, 0.04));
    color: var(--primary);
    width: 84px;
    height: 96px;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
    border: 1px solid rgba(0, 144, 204, 0.1);
    box-shadow: var(--shadow-sm);
}

.press-date-block .p-day {
    font-size: 26px;
}

.press-date-block .p-month {
    font-size: 12px;
}

.press-date-block .p-year {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.8;
}

.press-content-block {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.press-category-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.press-content-block h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Enforce 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Enforce 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 13. Mobile Drawer & Overlay */
.mobile-only {
    display: none;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -280px;
    width: 280px;
    background-color: var(--bg-surface);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
}

.mobile-nav-menu {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.drawer-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 10px 24px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 15, 25, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1100;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

/* 13.5. News Portal Hero & Slider Carousel */
.news-portal-hero {
    position: relative;
    padding: 24px 0 32px;
    margin-top: var(--header-height);
    background: #ECEFF7;
}

.news-portal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(var(--primary-glow) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: -1;
}

.news-portal-hero .container {
    max-width: 100%;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .news-portal-hero .container {
        padding: 0 24px;
    }
}

@media (max-width: 576px) {
    .news-portal-hero .container {
        padding: 0 16px;
    }
}

.hero-portal-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: stretch;
}

.carousel-column {
    position: relative;
    display: flex;
    flex-direction: column;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4);
    border: none;
    background-color: var(--bg-surface);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.carousel-container:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 144, 204, 0.2);
    transform: translateY(-4px);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    transform: scale(1);
}

.slide-image-wrapper {
    width: 100%;
    flex: 1;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide.active .slide-bg-img {
    transform: scale(1.04);
}

.slide-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(var(--text-white) 1px, transparent 0);
    background-size: 20px 20px;
}

.placeholder-icon {
    width: 72px;
    height: 72px;
    color: rgba(255, 255, 255, 0.2);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.slide-info-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 55%, transparent 100%);
    padding: 48px 32px 28px 32px;
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.carousel-slide.active .slide-info-block {
    transform: translateY(0);
    opacity: 1;
}

.slide-meta-row {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slide-badge {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 144, 204, 0.4);
}

.slide-date {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.slide-title a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.slide-title a:hover {
    color: var(--accent);
}

.slide-excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 85%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-actions {
    margin-top: 8px;
}

.btn-hero-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-hero-glow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-hero-glow:hover::before {
    left: 100%;
}

.btn-hero-glow .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-hero-glow:hover .btn-icon {
    transform: translateX(4px);
}

/* Controls */
.carousel-ctrl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: all var(--transition-base);
    margin: 0 20px;
}

.carousel-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 0 12px rgba(0, 144, 204, 0.5);
}

/* Sidebar updates feed list /Latest News*/
.latest-updates-column {
    display: flex;
    flex-direction: column;
}

.updates-panel {
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dark-theme .updates-panel {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.updates-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(to right, rgba(0, 144, 204, 0.08) 0%, transparent 100%);
}

.header-pulse-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.updates-header h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.05em;
}

.updates-feed-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.updates-feed-list::-webkit-scrollbar {
    width: 4px;
}

.updates-feed-list::-webkit-scrollbar-track {
    background: transparent;
}

.updates-feed-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.updates-feed-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

.feed-item-row {
    display: flex;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background: transparent;
    position: relative;
}

.dark-theme .feed-item-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.feed-item-row:last-child {
    border-bottom: none;
}

.feed-item-row:hover {
    background: linear-gradient(to right, rgba(0, 144, 204, 0.05), transparent);
    transform: translateX(8px);
}

.feed-item-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.feed-item-row:hover::before {
    transform: scaleY(1);
}

.feed-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-base);
}

.feed-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--secondary) 0%, var(--primary) 100%);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-thumb-placeholder svg {
    width: 18px;
    height: 18px;
}

.feed-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.feed-date {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.feed-details h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-main);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    max-height: calc(1.4em * 2);
    transition: color var(--transition-fast);
}

.feed-details h4 a {
    color: inherit;
    text-decoration: none;
}

.feed-item-row:hover h4 {
    color: var(--primary);
}

.feed-item-row:hover h4 a {
    color: var(--primary);
}

.feed-item-row.active-feed-item {
    background-color: var(--primary-light);
    border-left: 3px solid var(--primary);
}

/* 14. Responsive Media Queries */
@media (max-width: 1024px) {

    .news-grid,
    .video-playlist-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px !important;
    }

    .brand-col {
        grid-column: span 2 !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    #theme-toggle {
        display: none !important;
    }

    .language-dropdown-wrapper {
        display: none !important;
    }

    .header-container {
        padding: 0 16px;
    }

    .mobile-drawer {
        background-color: #ffffff !important;
        color: #1e293b !important;
        border-left: none !important;
        width: 100% !important;
        right: -100% !important;
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .mobile-drawer.active {
        right: 0 !important;
    }

    .drawer-header {
        border-bottom: 1px solid #f1f5f9 !important;
        padding: 20px !important;
    }

    .mobile-nav-link {
        background-color: #f8fafc !important;
        border: 1px solid #f1f5f9 !important;
        border-radius: 12px !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        display: block !important;
        text-decoration: none !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
        transition: all 0.2s ease !important;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background-color: #f1f5f9 !important;
        color: #0f172a !important;
        border-color: #e2e8f0 !important;
    }

    .mobile-nav-link.submenu-item {
        background-color: #ffffff !important;
        border: 1px solid #f1f5f9 !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .mobile-dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease-out;
        border-left: 2px solid #e2e8f0;
        margin-left: 16px;
        padding-left: 8px;
    }

    .mobile-submenu.open {
        max-height: 500px !important;
        opacity: 1 !important;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .mobile-dropdown-toggle.active .mobile-chevron {
        transform: rotate(180deg) !important;
    }

    .hero-portal-grid {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 20px !important;
    }

    .carousel-column,
    .latest-updates-column {
        height: auto !important;
    }

    .carousel-container {
        height: 100vw !important;
        min-height: 350px !important;
        max-height: 500px !important;
        border-radius: 20px !important;
    }

    .carousel-slides {
        height: 100% !important;
    }

    .slide-image-wrapper {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        flex: none !important;
    }

    .carousel-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .slide-info-block {
        position: absolute !important;
        bottom: 0 !important;
        height: auto !important;
        padding: 16px 20px !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%) !important;
    }

    .slide-title {
        font-size: 14px !important;
        margin: 0 !important;
    }

    .carousel-ctrl-btn {
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 32px !important;
        height: 32px !important;
    }

    .carousel-indicators {
        bottom: 12px !important;
        top: auto !important;
    }

    .updates-panel {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: hidden !important;
    }

    .updates-feed-list {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: hidden !important;
    }

    .mobile-only {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-grid,
    .detail-sidebar-layout,
    .org-chart-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-grid,
    .video-playlist-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .col-md-6 {
        width: 100%;
    }

    .feedback-card {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .brand-col {
        grid-column: span 1 !important;
    }

    .bottom-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-text-card h2 {
        font-size: 32px;
    }

    .container.detail-sidebar-layout {
        padding: 0;
    }

    .detail-sidebar-layout>.main-column,
    .main-article {
        padding: 20px 16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .sidebar-column {
        padding: 0 16px;
    }

    .article-title {
        font-size: 26px;
    }

    .press-row-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .hero-portal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        height: auto;
    }

    .carousel-column,
    .latest-updates-column {
        height: auto;
    }

    .carousel-container {
        height: 420px;
        border-radius: 20px;
    }

    .slide-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex: none;
    }

    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slide-info-block {
        position: absolute;
        bottom: 0;
        height: auto;
        padding: 12px 16px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    }

    .carousel-ctrl-btn {
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-indicators {
        bottom: 12px;
        top: auto;
    }

    .slide-title {
        font-size: 16px;
    }

    .updates-panel {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: hidden !important;
    }

    .updates-feed-list {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: hidden !important;
    }
}

/* 15. Public Feedbacks Popup Modal Styles */
.feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 15, 25, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feedback-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.feedback-modal-container {
    background-color: var(--bg-surface);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feedback-modal-overlay.active .feedback-modal-container {
    transform: scale(1);
}

.feedback-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feedback-modal-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.close-modal-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-modal-btn:hover {
    background-color: #EF4444;
    color: var(--text-white);
}

.feedback-modal-body-wrapper {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Stats Summary Card inside Modal */
.feedback-modal-stats-card {
    background-color: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.modal-stat-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

#modal-avg-rating {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.modal-stat-stars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-stars-row {
    display: flex;
    gap: 3px;
}

.modal-stars-row svg {
    width: 16px;
    height: 16px;
}

.modal-stat-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

#modal-total-count {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.modal-stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Feedbacks List in Modal */
.feedback-modal-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-feedback-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.modal-feedback-user {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.modal-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
}

.modal-user-name-date {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.modal-user-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-user-date {
    font-size: 11px;
    color: var(--text-muted);
}

.modal-stars-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.modal-stars-rating svg {
    width: 14px;
    height: 14px;
}

.star-filled {
    color: #F59E0B !important;
    fill: #F59E0B !important;
}

.star-empty {
    color: #CBD5E1 !important;
    fill: #CBD5E1 !important;
}

.modal-feedback-comment {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-main);
}

/* Modal Actions for Likes/Dislikes */
.modal-actions-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.interaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background-color: var(--bg-base);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.interaction-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.interaction-btn svg {
    width: 13px;
    height: 13px;
}

/* Official Response sub-block */
.official-response-box {
    background-color: var(--primary-light);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.official-response-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.official-response-header svg {
    width: 14px;
    height: 14px;
}

.official-response-comment {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-main);
}

/* Loader CSS */
.modal-loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 12px;
    color: var(--text-muted);
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-view-feedbacks:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

@media (max-width: 576px) {
    .feedback-modal-stats-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modal-stat-right {
        align-items: center;
        text-align: center;
    }
}

/* --- Child Menu Cards & Slider Section --- */
.menu-cards-section {
    padding: 4rem 0;
    background-color: #F8FAFC;
    /* Light off-white background */
    text-align: center;
}

.menu-section-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.menu-section-tag {
    display: inline-block;
    background-color: #EFE4D3;
    /* Beige tag background */
    color: #6B5B3E;
    /* Dark beige/brown text */
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid #E5D5BC;
}

.menu-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1E3A8A;
    /* Dark blue */
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.menu-section-desc {
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

.cards-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.cards-scroll-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 16px 4px;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    scroll-snap-type: x mandatory;
}

.cards-scroll-wrapper>* {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.cards-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.submenu-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 290px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
    border-left: 5px solid #D97706;
    /* Gold/brown accent border */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    text-align: left;
}

.submenu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-img-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
    border: 2px solid #F1F5F9;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.submenu-card:hover .card-img-container img {
    transform: scale(1.08);
}

.card-body-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1E3A8A;
    /* Dark blue */
    margin-bottom: 12px;
    font-family: var(--font-display);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Enforce 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body-content p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Enforce 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #1E3A8A;
    /* Dark blue uppercase link */
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.card-readmore-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.card-readmore-btn:hover {
    color: #D97706;
    /* Dark gold on hover */
}

.card-readmore-btn:hover i {
    transform: translateX(4px);
}

.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-base);
}

.slider-arrow-btn:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 144, 204, 0.3);
}

.slider-arrow-btn.prev-arrow {
    left: -10px;
}

.slider-arrow-btn.next-arrow {
    right: -10px;
}

/* Responsiveness for cards */
@media (max-width: 992px) {
    .submenu-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .cards-slider-container {
        padding: 0 4px;
    }

    .slider-arrow-btn.prev-arrow {
        left: 5px;
    }

    .slider-arrow-btn.next-arrow {
        right: 5px;
    }
}

@media (max-width: 576px) {
    .submenu-card {
        flex: 0 0 100%;
    }
}

/* News Archive Sidebar styling */
.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.archive-list li {
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.archive-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.archive-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.archive-left svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.archive-count {
    font-size: 11px;
    font-weight: 700;
    background-color: var(--border);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.archive-list li:hover a,
.archive-list li.active a {
    color: #135a98;
    background-color: #EDF2F9;
    border-left-color: #135a98;
}

.archive-list li:hover .archive-left svg,
.archive-list li.active .archive-left svg {
    color: var(--primary);
}

.archive-list li:hover .archive-count,
.archive-list li.active .archive-count {
    background-color: var(--primary);
    color: var(--text-white);
}

/* Sidebar layout overrides for News Grid */
.detail-sidebar-layout .news-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
    .detail-sidebar-layout .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .detail-sidebar-layout .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Section Navigation Widget styling */
.section-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-nav-list li {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.section-nav-list li a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    gap: 10px;
}

.section-nav-list li a svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.section-nav-list li:hover a,
.section-nav-list li.active a {
    color: var(--primary);
    background-color: var(--primary-light);
}

.section-nav-list li:hover a svg,
.section-nav-list li.active a svg {
    color: var(--primary);
}

.section-nav-list li.active a {
    font-weight: 600;
}

/* Video Section & Lightbox Portal Styling */
.video-portal-section .section-title {
    text-align: center;
}

.video-playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.video-playlist-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.video-playlist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 144, 204, 0.08), 0 8px 16px rgba(200, 146, 42, 0.04);
    border-color: var(--primary);
}

.video-thumb-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.playlist-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-playlist-card:hover .playlist-thumb {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-playlist-card:hover .play-overlay {
    background-color: rgba(11, 15, 25, 0.45);
}

.play-btn-circle {
    width: 68px;
    height: 48px;
    border-radius: 12px;
    background-color: #FF0000;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-playlist-card:hover .play-btn-circle {
    transform: scale(1);
    background-color: #E62117;
}

.play-btn-circle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 2px;
}

.video-playlist-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-playlist-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    /* Fixed height for 2 lines */
}

.vid-short-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit description/excerpt to maximum of 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.video-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.video-date-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-date-badge svg {
    width: 12px;
    height: 12px;
}

.watch-now-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.watch-now-lbl svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.video-playlist-card:hover .watch-now-lbl svg {
    transform: translateX(2px);
}

/* Lightbox Modal styles customization for Videos */
#video-lightbox .lightbox-content-wrapper {
    width: 900px;
    max-width: 95%;
}

.lightbox-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-lightbox-info {
    text-align: left;
    color: var(--text-white);
    padding: 0 8px;
}

.video-lightbox-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #ffffff;
}

.video-lightbox-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-height: 120px;
    overflow-y: auto;
}

/* Custom List Widget Links */
.custom-list-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.custom-list-link:hover {
    color: var(--primary);
}

/* Custom slider styles for News and Videos on Homepage */
.cards-scroll-wrapper .news-card,
.cards-scroll-wrapper .press-release-card,
.cards-scroll-wrapper .gallery-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 250px;
    height: auto;
}

.cards-scroll-wrapper .video-playlist-card,
.cards-scroll-wrapper .tiktok-playlist-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 250px;
    margin-top: 0;
}

@media (max-width: 992px) {

    .cards-scroll-wrapper .news-card,
    .cards-scroll-wrapper .press-release-card,
    .cards-scroll-wrapper .video-playlist-card,
    .cards-scroll-wrapper .tiktok-playlist-card,
    .cards-scroll-wrapper .gallery-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {

    .cards-scroll-wrapper .news-card,
    .cards-scroll-wrapper .press-release-card,
    .cards-scroll-wrapper .video-playlist-card,
    .cards-scroll-wrapper .tiktok-playlist-card,
    .cards-scroll-wrapper .gallery-card {
        flex: 0 0 100% !important;
        margin: 0;
        box-shadow: 0 20px 40px rgba(0, 144, 204, 0.12) !important;
        border-radius: 24px;
        border: 1px solid rgba(0, 144, 204, 0.2) !important;
        min-height: 480px !important;
        display: flex !important;
        flex-direction: column !important;
        background-color: #ffffff;
    }

    .cards-scroll-wrapper .video-playlist-card,
    .cards-scroll-wrapper .tiktok-playlist-card {
        min-height: 340px !important;
    }

    .cards-scroll-wrapper .gallery-card,
    .cards-scroll-wrapper .home-gallery-item,
    .cards-scroll-wrapper .press-release-card {
        min-height: auto !important;
        height: auto !important;
    }

    .cards-scroll-wrapper .news-card .news-card-content,
    .cards-scroll-wrapper .video-playlist-card .video-playlist-info,
    .cards-scroll-wrapper .tiktok-playlist-card .tiktok-playlist-info,
    .cards-scroll-wrapper .gallery-card .gallery-info {
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .news-card-img {
        height: 240px !important;
    }

    .news-card-content {
        padding: 24px !important;
    }

    .news-card-content h3 {
        font-size: 22px !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
    }

    .news-card-content p {
        font-size: 16px !important;
        color: #334155 !important;
    }

    .press-release-card {
        padding: 28px !important;
        border-left-width: 8px !important;
    }

    .press-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .press-excerpt {
        font-size: 16px !important;
        color: #334155 !important;
        margin-bottom: 16px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .video-thumb-container,
    .tiktok-thumb-container {
        padding-top: 65% !important;
    }

    .video-playlist-info,
    .tiktok-playlist-info {
        padding: 24px !important;
    }

    .video-playlist-info h4,
    .tiktok-playlist-info h4 {
        font-size: 20px !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
        height: auto !important;
    }

    .vid-short-desc {
        font-size: 15px !important;
        color: #334155 !important;
    }

    .play-btn-circle {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
    }
}

/* Scroll-Snap: One-card-at-a-time for all card sliders */
/* Scroll-Snap: One-card-at-a-time for all card sliders (mobile only) */
@media (max-width: 768px) {

    .cards-scroll-wrapper,
    .mobile-slider-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 16px 0 !important;
        scrollbar-width: none !important;
    }

    .cards-scroll-wrapper::-webkit-scrollbar,
    .mobile-slider-grid::-webkit-scrollbar {
        display: none !important;
    }

    .cards-scroll-wrapper>*,
    .mobile-slider-grid>* {
        scroll-snap-align: start !important;
        flex: 0 0 calc(100% - 32px) !important;
    }
}

/* Footer Social Icon Buttons - Inline SVG style */
.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.social-icon-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 144, 204, 0.4), 0 0 12px rgba(200, 146, 42, 0.3);
}

/* Mobile dot counter indicators */
.slider-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    width: 100%;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 180, 255, 0.22);
    /* Clear semi-translucent primary blue */
    transition: all var(--transition-fast);
    cursor: pointer;
}

.dark-theme .slider-dots .dot {
    background-color: rgba(255, 255, 255, 0.25);
    /* Clear white for dark theme */
}

.slider-dots .dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--primary-glow);
}

.dark-theme .slider-dots .dot.active {
    background-color: var(--accent);
    /* Accent gold dot in dark theme */
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .slider-dots {
        display: flex !important;
    }

    .slider-arrow-btn {
        display: none !important;
    }
}

/* TikTok Premium Card Styling */
.tiktok-playlist-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.tiktok-playlist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(255, 0, 80, 0.1), 0 8px 16px rgba(0, 242, 254, 0.05);
    border-color: #ff0050;
}

.tiktok-thumb-container {
    position: relative;
    width: 100%;
    padding-top: 133%;
    /* TikTok Portrait aspect ratio */
    overflow: hidden;
    background: #000;
}

.tiktok-thumb-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.tiktok-playlist-card:hover .playlist-thumb {
    transform: scale(1.08);
}

.tiktok-playlist-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.tiktok-playlist-info h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-main);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tiktok-tag-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.tiktok-playlist-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.tiktok-playlist-card:hover .play-overlay {
    opacity: 1;
}

.tiktok-playlist-card .play-btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0050, #00f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 0, 80, 0.4);
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tiktok-playlist-card:hover .play-btn-circle {
    transform: scale(1);
}

/* TikTok Lightbox Portrait Mode */
#lightbox-content-wrapper.tiktok-mode {
    max-width: 420px;
    flex-direction: column;
}

#lightbox-video-container.tiktok-portrait {
    padding-top: 177.78%;
    /* 9:16 portrait aspect ratio */
    width: 100%;
    max-width: 420px;
}


.social-icon-btn.social-icon-unset {
    opacity: 0.35;
    cursor: default;
}

.social-icon-btn.social-icon-unset:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
    transform: none;
    box-shadow: none;
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

/* Footer Social Icons Explicit Sizing (legacy) */
.social-links a svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* --- Official Press Release Card Styles --- */
.press-release-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 6px solid var(--primary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dark-theme .press-release-card {
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.press-release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.press-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.press-thumbnail {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.press-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.press-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.4;
}

.dark-theme .press-title,
.dark-theme .press-title a {
    color: #ffffff;
}

.press-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.press-title a:hover {
    color: var(--primary);
}

.press-excerpt {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.dark-theme .press-excerpt {
    color: var(--text-muted);
}

.press-footer {
    margin-top: auto;
}

.press-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #b39b56;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.dark-theme .press-read-more {
    color: var(--accent);
}

.press-read-more:hover {
    gap: 12px;
    color: var(--primary);
}

.press-read-more i {
    width: 16px;
    height: 16px;
}

/* About Us Section styling based on sample image */
.about-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.about-us-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
}

.about-us-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: #1700e6;
    color: white;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
}

.about-us-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-tab {
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.dark-theme .about-tab {
    background-color: rgba(255, 255, 255, 0.02);
    box-shadow: none;
}

.about-tab:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: rgba(23, 0, 230, 0.1);
}

.dark-theme .about-tab:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.about-tab.active {
    background-color: #FFFFFF;
    border: 1px solid rgba(23, 0, 230, 0.2);
    box-shadow: 0 16px 40px -12px rgba(23, 0, 230, 0.15);
    border-radius: 16px;
}

.dark-theme .about-tab.active {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
}

.about-tab-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(15, 23, 42, 0.04);
    color: var(--text-main);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-theme .about-tab-icon {
    background-color: rgba(255, 255, 255, 0.05);
}

.about-tab:hover .about-tab-icon {
    background-color: rgba(23, 0, 230, 0.05);
    color: #1700e6;
}

.dark-theme .about-tab:hover .about-tab-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.about-tab.active .about-tab-icon {
    color: #FFFFFF;
    background: linear-gradient(135deg, #1700e6, #0066cc);
    box-shadow: 0 8px 16px rgba(23, 0, 230, 0.25);
    transform: scale(1.05);
}

.about-tab-title {
    font-family: var(--font-display);
    font-size: 20px;
    flex-grow: 1;
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-tab.active .about-tab-title {
    background: linear-gradient(90deg, #1a0dab, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-tab-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.about-tab.active .about-tab-content {
    max-height: 1200px;
    opacity: 1;
    margin-top: 12px;
    padding-left: 64px;
    padding-bottom: 16px;
}

.about-tab-content p {
    color: #000;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

.about-tab-content ul li {
    color: #000;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

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

/* Premium Styling & Animations for About Us */
.premium-glass-panel {
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.03), rgba(15, 23, 42, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid rgba(230, 0, 92, 0.08);
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.4), 0 20px 40px -10px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.floating-logo {
    max-width: 75%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Scroll-triggered staggered rise-from-bottom reveal for About Us */
.about-tab-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.about-tab-reveal.about-tab-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Predefined Table Styles for Rich Editor */
.table-basic, .table-striped, .table-modern {
    max-width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

/* Table Alignment & Centering Support
   TinyMCE may use align attribute OR inline margin styles for alignment.
   We use !important to override TinyMCE's inline width (e.g. width:597pt) */

/* --- CENTER --- */
table[align="center"],
.article-body-content table[style*="margin-left: auto"],
.article-body-content table[style*="margin-right: auto"],
figure.table[style*="margin: 0 auto"],
figure.table[style*="margin:0 auto"] {
    display: table;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100%;
}

/* --- LEFT --- */
table[align="left"] {
    display: table;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* --- RIGHT --- */
table[align="right"] {
    display: table;
    width: auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}



.table-basic th, .table-basic td, 
.table-striped th, .table-striped td, 
.table-modern th, .table-modern td {
    padding: 12px 15px;
}

/* Basic Grid */
.table-basic th, .table-basic td {
    border: 1px solid var(--border);
}

/* Striped Rows */
.table-striped th, .table-striped td {
    border-bottom: 1px solid var(--border);
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: var(--bg-surface);
}

/* Modern Blue Header */
.table-modern th, .table-modern td {
    border: 1px solid var(--border);
}
.table-modern thead tr {
    background-color: var(--primary);
    color: #ffffff;
    text-align: left;
}
.table-modern tbody tr {
    border-bottom: 1px solid #dddddd;
}
.table-modern tbody tr:nth-of-type(even) {
    background-color: #f9fbff;
}
.table-modern tbody tr:last-of-type {
    border-bottom: 2px solid var(--primary);
}

/* ─── Pagination Component ─── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
    padding: 8px 0 24px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1;
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Active / current page — solid blue pill */
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(10, 88, 202, 0.35);
    pointer-events: none;   /* can't click the page you're already on */
    cursor: default;
}

/* Prev / Next arrow icons */
.page-link svg,
.page-link i {
    width: 16px;
    height: 16px;
}