
        :root {
            --primary-color: #006d3f;
            --secondary-color: #0a9b54;
            --accent-color: #2aad4f;
            --light-color: #e9f9f1;
            --dark-color: #044a2a;
            --text-color: #333;
            --light-gray: #f8f9fa;
            --border-color: #e0e0e0;
        }

        body {
            font-family: "Poppins", sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-gray);
            color: var(--text-color);
        }

        /* Header Styles */
        header {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo-container img {
        height: 50px;
        transition: transform 0.3s ease;
    }

    .logo-container img:hover {
        transform: scale(1.05);
    }

    .app-name {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--primary-color);
        margin: 0;
    }

    /* Navigation Styles */
    .nav-container {
        display: flex;
        align-items: center;
        flex-grow: 1;
        justify-content: center;
    }

    .main-nav {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 25px;
    }

    .main-nav li {
        position: relative;
    }

    .main-nav a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .main-nav a:hover {
        color: var(--primary-color);
    }

    .dropdown-menu {
        position: absolute;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0;
        min-width: 180px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li {
        padding: 0;
        margin: 0;
    }

    .dropdown-menu a {
        padding: 8px 20px;
        display: block;
        white-space: nowrap;
    }

    .dropdown-menu a:hover {
        background: var(--light-color);
    }

    .login-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .login-btn:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        color: white;
    }

    /* Mobile menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    /* Desktop login button */
    .desktop-login {
        display: inline-block;
    }

    /* Mobile login in menu */
    .mobile-login {
        display: none;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }

        .nav-container {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .nav-container.active {
            max-height: 500px;
        }

        .main-nav {
            flex-direction: column;
            width: 100%;
            gap: 0;
            padding: 10px 0;
        }

        .main-nav li {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .main-nav a {
            padding: 15px 20px;
            width: 100%;
        }

        .dropdown-menu {
            position: static;
            box-shadow: none;
            padding: 0;
            opacity: 1;
            visibility: visible;
            transform: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .dropdown.active .dropdown-menu {
            max-height: 300px;
        }

        .dropdown-menu a {
            padding-left: 40px;
            background: rgba(0, 0, 0, 0.02);
        }

        /* Hide desktop login, show mobile login */
        .desktop-login {
            display: none;
        }

        .mobile-login {
            display: block;
            width: 100%;
        }

        .mobile-login .login-btn {
            width: calc(100% - 40px);
            margin: 15px 20px;
            text-align: center;
            display: block;
            color:white
        }

        .logo-container img {
            height: 40px;
        }

        .app-name {
            font-size: 1.2rem;
        }
    }

        /* Supported By Section */
        .supported-section {
            padding: 40px 0;
            background: white;
            text-align: center;
        }

        .supported-title {
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .supported-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: var(--secondary-color);
        }

        .supported-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .supported-logo {
            height: 70px;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }

        .supported-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Main Content Styles */
        .main-container {
            padding: 30px 0;
        }

        .left-panel {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .left-panel::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            transform: rotate(30deg);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: rotate(30deg) translateX(0) translateY(0);
            }

            50% {
                transform: rotate(30deg) translateX(-50px) translateY(50px);
            }

            100% {
                transform: rotate(30deg) translateX(0) translateY(0);
            }
        }

        .left-panel h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .left-panel p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
            position: relative;
            max-width: 100%;
        }

        .stats {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(233, 249, 241, 0.95));
            color: var(--primary-color);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .stats::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(233, 249, 241, 0.8));
            z-index: -1;
            border-radius: 15px;
        }

        .stats:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .stats h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--dark-color);
        }

        .stats p {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            color: var(--primary-color);
        }

        .chart-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 20px 15px 10px;
            color: var(--primary-color);
            height: 280px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 109, 63, 0.1);
            overflow: hidden;
        }

        .chart-box h6 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--dark-color);
            flex-shrink: 0;
        }

        .chart-box .chart-wrapper {
            flex: 1;
            min-height: 0;
            position: relative;
            width: 100%;
        }

        .chart-box canvas {
            position: absolute !important;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
        }

        .chart-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* Article Section Styles */
        .articles-section {
            padding: 40px 0;
        }

        .section-title {
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background: var(--secondary-color);
        }

        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .article-img {
            height: 200px;
            overflow: hidden;
        }

        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-card:hover .article-img img {
            transform: scale(1.05);
        }

        .article-content {
            padding: 20px;
        }

        .article-date {
            color: #777;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .article-excerpt {
            color: #555;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .read-more {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--secondary-color);
            gap: 8px;
        }

        /* Footer Styles */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            gap: 12px;
        }

        .footer-contact {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-contact i {
            margin-top: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .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: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media (max-width: 1199px) {
            .left-panel h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 991px) {
            .header-container {
                justify-content: space-between;
                gap: 20px;
            }

            .nav-container {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: 30px 20px;
                transition: all 0.4s ease;
                z-index: 999;
                overflow-y: auto;
            }

            .nav-container.active {
                left: 0;
            }

            .main-nav {
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 0;
            }

            .main-nav li {
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid #eee;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                width: 100%;
                text-align: center;
                padding-left: 20px;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .mobile-menu-btn {
                display: block;
            }

            .left-panel {
                height: auto;
                margin-bottom: 30px;
            }

            .stats p {
                font-size: 1.8rem;
            }

            .supported-logos {
                gap: 25px;
            }

            .supported-logo {
                height: 50px;
            }
        }

        @media (max-width: 767px) {
            .left-panel {
                padding: 30px 20px;
            }

            .left-panel h2 {
                font-size: 1.8rem;
            }

            .stats {
                padding: 20px;
            }

            .stats p {
                font-size: 1.5rem;
            }

            .article-img {
                height: 180px;
            }

            .footer-title {
                margin-top: 30px;
            }

            .supported-logos {
                gap: 20px;
            }

            .supported-logo {
                height: 40px;
            }
        }

        @media (max-width: 575px) {
            .logo-container img {
                height: 40px;
            }

            .app-name {
                font-size: 1.2rem;
            }

            .left-panel h2 {
                font-size: 1.5rem;
            }

            .left-panel p {
                font-size: 1rem;
            }

            .stats h4 {
                font-size: 1rem;
            }

            .stats p {
                font-size: 1.3rem;
            }

            .supported-logos {
                gap: 15px;
            }

            .supported-logo {
                height: 35px;
            }
        }



       .no-articles {
         text-align: center;
         padding: 60px 20px;
     }

     .no-articles i {
         font-size: 4rem;
         color: var(--primary-color);
         margin-bottom: 20px;
     }

    