:root {
    /* Colors */
    --color-primary: #15803d; /* Tailwind Green 700 */
    --color-primary-light: #22c55e;
    --color-primary-dark: #166534;
    --color-secondary: #0f172a; /* Slate 900 */
    --color-dark-green: #064e3b; /* Emerald 900 */
    --color-accent: #84cc16; /* Lime 500 */
    
    --color-text-main: #334155;
    --color-text-muted: #64748b;
    --color-heading: #0f172a;
    
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-bg-dark: rgba(6, 78, 59, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* Prevent horizontal scroll — on body only, NOT html, to avoid clipping fixed elements */
body {
    overflow-x: hidden;
}


body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

.relative { position: relative; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

.section {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: var(--color-bg-light);
}

.text-green { color: var(--color-primary-light); }
.text-white { color: #fff; }
.text-blue { color: #3b82f6; }
.text-info { color: #0ea5e9; }
.text-purple { color: #8b5cf6; }
.text-gradient-green {
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}
.btn-primary.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-outline-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all var(--transition-fast);
}
.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.btn-outline-glass.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-dark-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-dark-green);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
}
.btn-dark-green:hover {
    background-color: #042f24;
    color: #fff;
}

.btn-icon {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-circle-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}
.btn-circle-action:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.1);
}

/* Government Strip */
.gov-strip {
    background-color: #1a1a1a;
    color: #ccc;
    font-size: 0.8rem;
    padding: 8px 0;
}
.gov-logo {
    height: 24px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}
.gov-text {
    font-weight: 500;
}
.gov-links a {
    color: #ccc;
    margin-left: 20px;
    gap: 5px;
}
.gov-links a:hover {
    color: #fff;
}
.lang-dropdown {
    margin-left: 20px;
    gap: 5px;
    cursor: pointer;
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #0f172a;
    z-index: 99999 !important;
    transition: all var(--transition-normal);
}
.header.sticky {
    position: fixed;
    top: 0;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 99999 !important;
}
.header.sticky .nav-list > li > a {
    color: #ffffff !important;
}
.header.sticky .brand-text {
    color: #ffffff !important;
}
.header.sticky .btn-search,
.header.sticky .btn-menu {
    color: #ffffff !important;
}

.glass-nav {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-text {
    display: flex;
    flex-direction: column;
    color: #fff;
}
.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.1;
}
.brand-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
}

.nav-list {
    display: flex;
    gap: 30px;
}
.nav-list > li > a {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}
.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-light);
    transition: width var(--transition-fast);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
    width: 100%;
}
.has-dropdown {
    position: relative;
}
.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Dropdown Navigation Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100000 !important;
    border: 1px solid rgba(0,0,0,0.08);
}
.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 18px;
    color: #1e293b !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    border-radius: 6px;
    margin: 0 6px;
}

.dropdown-menu a:hover {
    background: #f0fdf4;
    color: #15803d !important;
}

.dropdown-header {
    padding: 8px 18px 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #15803d;
}

.dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 6px 0;
}

/* Sub-dropdown styling */
.has-subdropdown {
    position: relative;
}
.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100001 !important;
    border: 1px solid rgba(0,0,0,0.08);
}
.has-subdropdown:hover > .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-search {
    color: #fff;
}
.btn-menu {
    color: #fff;
}

/* Hero Section */
.hero {
    height: calc(100vh - 60px);
    min-height: 680px;
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: hidden; /* Clips parallax bg — safe now that header is a sibling, not nested */
    position: relative;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6, 78, 59, 0.9) 0%, rgba(6, 78, 59, 0.4) 100%);
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}
.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    color: #fff;
}
.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}
.small-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}
.institution-name {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 5px;
}

.card-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stat-item h4 {
    color: #fff;
    margin: 0;
    display: inline-block;
}
.stat-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}
.card-footer-text {
    font-size: 0.9rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Statistics Ribbon */
.stats-ribbon-wrapper {
    margin-top: -60px;
}
.stats-ribbon {
    background: var(--color-dark-green);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.stat-col {
    position: relative;
}
.stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.stat-icon {
    color: var(--color-primary-light);
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}
.counter-wrap {
    color: #fff;
    margin-bottom: 5px;
}
.stat-col p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* Quick Access */
.section-header {
    margin-bottom: 40px;
}

/*
 * section-title DEFAULT = dark (for white/light page background).
 * Only use .section-dark on a section to make the title white.
 * This stops the colour from ever flipping unexpectedly.
 */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-heading); /* dark slate — correct on white/light bg */
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 99px;
}
/* Only flip to white when the section has a dark background */
.section-dark .section-title {
    color: #ffffff;
}
.section-dark .section-title::after {
    background-color: var(--color-primary-light);
}

/* ── Featured Initiatives: LOCKED dark background in CSS (never changes) ── */
.featured-initiatives {
    background: #0f172a; /* Slate 900 — always dark, always white title */
    padding: 80px 0;
}

.view-all-link {
    color: #22c55e !important;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s ease;
}
.view-all-link:hover {
    color: #16a34a !important;
    transform: translateX(4px);
}

.quick-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(21, 128, 61, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.quick-card:hover .icon-wrapper {
    background-color: var(--color-primary);
    color: #fff;
}
.quick-card h4 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Featured Initiatives */
.view-all-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.view-all-link:hover {
    color: var(--color-primary-dark);
}

.initiative-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}
.initiative-card:hover {
    transform: translateY(-5px);
}
.card-image {
    height: 250px;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.initiative-card:hover .card-image img {
    transform: scale(1.05);
}
.card-content {
    padding: 25px;
}
.card-content h4 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}
.card-content p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Latest Activities */
.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.activity-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    gap: 20px;
    transition: transform var(--transition-fast);
}
.activity-item:hover {
    transform: translateX(5px);
}
.date-badge {
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.date-badge .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.date-badge .month {
    font-size: 0.8rem;
    font-weight: 500;
}
.activity-content {
    flex-grow: 1;
}
.activity-content h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.activity-content p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.activity-thumb {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.activity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Masonry */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item.large {
    grid-column: span 2;
    height: 250px;
}
.gallery-item.small {
    height: 150px;
}
.gallery-item.large-wide {
    grid-column: span 2;
    height: 200px;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.play-icon {
    width: 60px;
    height: 60px;
    color: #fff;
    fill: rgba(255,255,255,0.2);
}

/* Partners */
.partners-section {
    background: #fff;
}
.partner-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 180px;
    text-align: center;
}
.partner-card img {
    max-height: 60px;
}
.partner-card span {
    font-weight: 600;
    font-size: 1rem;
}
.partner-card small {
    display: block;
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-top: 5px;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--color-primary);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

/* Newsletter */
.newsletter-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 59, 0.9);
}
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 20px;
    outline: none;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}
.btn-subscribe {
    background: var(--color-primary-light);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition-fast);
}
.btn-subscribe:hover {
    background: var(--color-primary);
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 10px;
    transition: all var(--transition-fast);
}
.social-links a:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-top {
    padding: 60px 0 40px;
}
.footer-title {
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--color-text-muted);
}
.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}
.contact-info p {
    display: flex;
    gap: 10px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    align-items: flex-start;
}
.contact-info i {
    color: var(--color-primary);
    margin-top: 4px;
}
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.btn-back-to-top {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn-back-to-top:hover {
    background: var(--color-primary-dark);
}

/* ============================================
   ANNOUNCEMENT STRIP
   ============================================ */
@keyframes pulseBg {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}
@keyframes badgePop {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.08); }
}

.announcement-strip {
    background: linear-gradient(90deg, #064e3b, #15803d, #065f46, #1a6b3a);
    background-size: 300% 300%;
    animation: pulseBg 5s ease infinite;
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 2000;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.announcement-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 50px 0 20px; /* Right padding to prevent overlap with absolute close button */
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.announce-badge {
    background: #fbbf24;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
    animation: badgePop 2s ease infinite;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.announce-text {
    font-size: 0.88rem;
    flex: 1;
    opacity: 0.97;
    line-height: 1.5;
    min-width: 0;
}
.announce-text strong { color: #fde68a; }
.announce-text em    { font-style: normal; color: #6ee7b7; font-weight: 600; }
.announce-cta {
    background: #fff;
    color: #064e3b !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 6px 18px;
    border-radius: 999px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.announce-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    color: #064e3b !important;
}
.announce-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.announce-close:hover { background: rgba(255,255,255,0.3); }

/* Responsive Announcement Strip styles */
@media (max-width: 768px) {
    .announcement-strip {
        padding: 15px 0;
    }
    .announcement-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 0 24px; /* Normal padding for mobile */
    }
    .announce-text {
        flex: none;
        width: 100%;
        font-size: 0.84rem;
        min-width: unset;
    }
    .announce-cta {
        width: 100%;
        justify-content: center;
        padding: 8px 18px;
    }
    .announce-close {
        top: 10px;
        right: 10px;
        transform: none;
    }
}

/* ============================================
   FEATURED COURSE SECTION
   ============================================ */
@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
@keyframes shimmer-border {
    0%   { border-color: rgba(99,235,155,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 20px rgba(34,197,94,0.2); }
    50%  { border-color: rgba(34,197,94,0.9);  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(34,197,94,0.5); }
    100% { border-color: rgba(99,235,155,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 20px rgba(34,197,94,0.2); }
}

.featured-course-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, #0a2e1a 0%, #064e3b 40%, #15803d 80%, #0f172a 100%);
    overflow: hidden;
}
.fc-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(34,197,94,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(132,204,22,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.fc-label {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    align-items: center;
}
.fc-badge-hot {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    animation: badgePop 2s ease infinite;
}
.fc-badge-free {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 1px;
}
.fc-badge-govt {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #d1fae5;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 999px;
}
.fc-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}
.fc-highlight {
    background: linear-gradient(90deg, #4ade80, #a3e635, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fc-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
}
.fc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}
.fc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px;
    transition: background 0.25s, transform 0.25s;
}
.fc-feature-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.fc-feat-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}
.fc-feature-item strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.fc-feature-item span {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
}
.fc-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.fc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 999px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(34,197,94,0.4);
}
.fc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34,197,94,0.55);
    color: #fff !important;
}
.fc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 999px;
    transition: all 0.2s;
}
.fc-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    color: #fff !important;
}
.fc-seats-note {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}
.fc-seats-note a {
    color: #4ade80;
    text-decoration: underline;
}
.fc-seats-note a:hover { color: #86efac; }
.fc-card {
    border-radius: 28px;
    overflow: hidden;
    animation: float-card 5s ease-in-out infinite, shimmer-border 3s ease-in-out infinite;
    border: 2px solid rgba(34,197,94,0.5);
}
.fc-card-header {
    background: linear-gradient(135deg, #064e3b, #15803d);
    padding: 28px 30px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fc-card-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.fc-card-logos img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    padding: 3px;
}
.fc-card-header h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.fc-card-header p {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    margin: 0;
}
.fc-card-body {
    background: #fff;
    padding: 30px;
    text-align: center;
}
.fc-recycle-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    line-height: 1;
}
.fc-card-course-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 16px;
    line-height: 1.2;
}
.fc-pill-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.fc-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
}
.fc-pill.green  { background: #dcfce7; color: #15803d; }
.fc-pill.blue   { background: #dbeafe; color: #1d4ed8; }
.fc-pill.orange { background: #ffedd5; color: #c2410c; }
.fc-card-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid #f0fdf4;
    border-bottom: 1px solid #f0fdf4;
    margin-bottom: 24px;
}
.fc-stat {
    flex: 1;
    text-align: center;
}
.fc-stat strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #064e3b;
}
.fc-stat span {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}
.fc-stat-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
}
.fc-card-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #15803d, #22c55e);
    color: #fff !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 0;
    border-radius: 14px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(21,128,61,0.35);
}
.fc-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(21,128,61,0.5);
    color: #fff !important;
}
@media (max-width: 768px) {
    .fc-title { font-size: 1.9rem; }
    .fc-features { grid-template-columns: 1fr; }
    .fc-actions { flex-direction: column; }
    .fc-btn-primary, .fc-btn-outline { width: 100%; justify-content: center; }
    .announcement-inner { gap: 10px; }
}

/* ============================================
   RESPONSIVE & MOBILE DRAWER SMOOTHNESS
   ============================================ */
@media (max-width: 991px) {
    /* Hide top bar links on mobile for clean header */
    .gov-strip .gov-links {
        display: none;
    }

    /* Slide-out Mobile Navigation Drawer */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 310px;
        max-width: 85vw;
        height: 100vh;
        background: #0f172a;
        padding: 85px 20px 40px;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
        overflow-y: auto;
        z-index: 9998;
        visibility: hidden;
        pointer-events: none;
    }
    
    .main-nav.active {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-list > li > a {
        font-size: 1rem;
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff !important;
    }
    
    /* Mobile Dropdown & Sub-dropdown Accordions */
    .dropdown-menu, .sub-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 6px;
        padding: 8px 12px;
        border-radius: 10px;
        display: none;
    }
    
    .has-dropdown:hover > .dropdown-menu,
    .has-subdropdown:hover > .sub-dropdown-menu,
    .has-dropdown.active > .dropdown-menu,
    .has-subdropdown.active > .sub-dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.88) !important;
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .dropdown-menu a:hover {
        background: rgba(34, 197, 94, 0.25);
        color: #4ade80 !important;
    }
    
    .dropdown-header {
        color: #4ade80;
        padding: 8px 10px 4px;
    }

    /* Mobile Hamburger Menu Toggle Button Fix */
    .btn-menu {
        z-index: 9999;
        position: relative;
    }

    /* Stats Ribbon Mobile Fixes */
    .stats-ribbon {
        padding: 24px 15px;
    }
    
    .stat-col {
        margin-bottom: 20px;
    }
    
    .stat-col:last-child {
        margin-bottom: 0;
    }

    /* Featured Spotlight Section Mobile Polish */
    .fc-title {
        font-size: 1.75rem;
    }
    
    .fc-card {
        margin-top: 15px;
    }

    .fc-features {
        grid-template-columns: 1fr;
    }
    
    .fc-actions {
        flex-direction: column;
    }
    
    .fc-btn-primary, .fc-btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Hero section height adjustments for mobile screens */
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 70px;
    }
}
