        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2c7a7b;
            --secondary: #3182ce;
            --accent: #e53e3e;
            --light: #f7fafc;
            --dark: #2d3748;
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f8f9fa;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            color: inherit;
        }

        /* Navbar Styles (matches site-wide navbar) */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 10px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 30px;
        }

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 300;
            transition: var(--transition);
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                background: white;
                width: 80%;
                height: calc(100vh - 70px);
                flex-direction: column;
                align-items: flex-start;
                padding: 50px 30px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 15px 0;
            }
        }

        /* Page Header (matches site-wide hero style) */
        .reports-hero {
            height: 70vh;
            min-height: 500px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('../Imgs/slider/report.jpg');
            color: #fff;
            text-align: center;
            background-size: cover;
            background-position: center;
        }

        .reports-hero .container {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .reports-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 30px;
            background: rgba(255,255,255,0.15);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .reports-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .reports-hero p {
            max-width: 650px;
            margin: 0 auto;
            font-size: 1.2rem;
            opacity: 0.95;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .reports-hero .wipe-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: reportsWipe 3s infinite linear;
            z-index: 1;
        }

        @keyframes reportsWipe {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .breadcrumb {
            margin-top: 25px;
            font-size: 0.9rem;
            opacity: 0.85;
        }

        .breadcrumb a {
            text-decoration: none;
            color: #fff;
            opacity: 0.85;
        }

        .breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        /* Reports Section */
        .reports-section {
            padding: 90px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .reports-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(49,130,206,0.08) 0%, rgba(49,130,206,0) 70%);
            border-radius: 50%;
        }

        .reports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .report-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
            border: 1px solid rgba(44, 62, 80, 0.06);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            opacity: 0;
            transform: translateY(40px);
        }

        .report-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .report-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(44, 62, 80, 0.15);
        }

        .report-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .report-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .report-year-tag {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--secondary);
            background: rgba(49, 130, 206, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
        }

        .report-card h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .report-card p {
            color: #5a6c7d;
            font-size: 0.98rem;
            margin-bottom: 26px;
            line-height: 1.6;
        }

        .report-card-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .report-view-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 26px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(44, 122, 123, 0.25);
        }

        .report-view-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(44, 122, 123, 0.35);
        }

        .report-download-btn {
            width: 46px;
            height: 46px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(44, 62, 80, 0.06);
            color: #2c3e50;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .report-download-btn:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Footer (matches site-wide footer) */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 0.9rem;
        }

        .developer-link {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }

        .developer-link:hover {
            color: white;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .reports-hero {
                height: 60vh;
            }
        }

        @media (max-width: 480px) {
            .reports-hero h1 {
                font-size: 2.1rem;
            }

            .report-card {
                padding: 32px 24px;
            }

            .report-card-actions {
                flex-wrap: wrap;
            }
        }
    
