        :root {
            --primary: #0f0f3d;
            --secondary: #5a189a;
            --accent: #ff007c;
            --success: #00f5d4;
            --light: #e0e0e0;
            --dark: #0a0a0a;
            --gradient-primary: linear-gradient(135deg, #0f0f3d 0%, #5a189a 100%);
            --gradient-secondary: linear-gradient(135deg, #5a189a 0%, #c77dff 100%);
            --gradient-accent: linear-gradient(135deg, #ff007c 0%, #ff4d6d 100%);
            --gradient-light: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* TOP BAR */
        .top-bar {
            background: var(--gradient-primary);
            color: white;
            font-size: 0.9rem;
        }
        
        .top-bar a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .top-bar a:hover {
            color: var(--success);
        }
        
        /* HEADER */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* NAVIGATION */
        .main-nav {
            background: var(--gradient-primary);
            padding: 0;
        }
        
        .main-nav .navbar-nav {
            gap: 5px;
        }
        
        .main-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .main-nav .nav-link:hover,
        .main-nav .nav-link.active {
            color: white !important;
            background: rgba(255, 255, 255, 0.15);
        }
        
        /* HERO SECTION */
        .hero-section {
            background: linear-gradient(135deg, rgba(15,15,61,0.9) 0%, rgba(90,24,154,0.9) 100%), url('/frontend/Image/banner.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* CIRCULARS SECTION */
        .circulars-section {
            background: var(--gradient-light);
            padding: 15px 0;
            margin: 20px 0;
            border-radius: 10px;
        }
        
        .circulars-header {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            white-space: nowrap;
            text-align: center;
            box-shadow: 0 3px 10px rgba(15, 15, 61, 0.2);
        }
        
        .marquee-container {
            background: white;
            padding: 12px 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .marquee-container a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            margin: 0 12px;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .marquee-container a:hover {
            color: var(--accent);
            background: rgba(255, 0, 124, 0.1);
        }
        
        /* MAIN CONTENT */
        .content-section {
            padding: 60px 0;
        }
        
        .section-title {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }
        
        /* IMPACT STUDIES SECTION */
        .impact-intro {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-left: 8px solid var(--secondary);
        }
        
        .impact-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .impact-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            flex-shrink: 0;
        }
        
        /* THREE PILLARS SECTION */
        .pillars-section {
            margin: 50px 0;
        }
        
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .pillar-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--accent);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .pillar-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .pillar-number {
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .pillar-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        /* ACHIEVEMENTS LIST */
        .achievements-section {
            background: linear-gradient(135deg, rgba(15,15,61,0.05) 0%, rgba(90,24,154,0.05) 100%);
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
        }
        
        .achievements-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .achievement-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .achievement-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .achievement-number {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .achievement-content {
            flex-grow: 1;
        }
        
        .achievement-content h5 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* STATISTICS TABLES */
        .stats-section {
            margin: 50px 0;
        }
        
        .stats-table-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }
        
        .stats-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .stats-table thead {
            background: var(--gradient-primary);
        }
        
        .stats-table th {
            color: white;
            font-weight: 600;
            padding: 20px 15px;
            text-align: center;
            font-size: 1rem;
        }
        
        .stats-table tbody tr {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .stats-table tbody tr:hover {
            background: rgba(90, 24, 154, 0.05);
        }
        
        .stats-table td {
            padding: 18px 15px;
            color: var(--primary);
            text-align: center;
        }
        
        .region-name {
            text-align: left;
            font-weight: 500;
        }
        
        .percentage-cell {
            font-weight: 600;
        }
        
        .percentage-high {
            background: rgba(0, 245, 212, 0.1);
            color: #00a896;
        }
        
        .percentage-medium {
            background: rgba(255, 193, 7, 0.1);
            color: #ffc107;
        }
        
        .percentage-low {
            background: rgba(255, 0, 124, 0.1);
            color: var(--accent);
        }
        
        /* DOWNLOADS SECTION */
        .downloads-section {
            margin: 50px 0;
        }
        
        .downloads-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .download-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--secondary);
        }
        
        .download-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .download-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .download-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .download-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }
        
        .download-body {
            padding: 25px;
        }
        
        .download-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            background: rgba(90, 24, 154, 0.05);
            border-radius: 10px;
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .download-link:hover {
            background: rgba(90, 24, 154, 0.1);
            transform: translateX(5px);
            color: var(--accent);
        }
        
        .download-link i {
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        /* BUTTON STYLES */
        .btn {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.4s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(90, 24, 154, 0.3);
            color: white;
        }
        
        .btn-accent {
            background: var(--gradient-accent);
        }
        
        /* FOOTER */
        footer.bg-dark {
            background: var(--gradient-primary) !important;
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer.bg-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-accent);
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .footer-links a:hover {
            color: var(--success);
            transform: translateX(10px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px) rotate(10deg);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .impact-intro {
                padding: 30px;
            }
            
            .pillars-grid {
                grid-template-columns: 1fr;
            }
            
            .achievement-item {
                flex-direction: column;
            }
            
            .achievement-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .stats-table {
                display: block;
                overflow-x: auto;
            }
            
            .downloads-grid {
                grid-template-columns: 1fr;
            }
            
            .circulars-header {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .main-nav .nav-link {
                padding: 8px 12px !important;
                font-size: 0.9rem;
            }
            
            .hero-section {
                padding: 80px 0 40px;
            }
            
            .stats-table th,
            .stats-table td {
                padding: 12px 8px;
                font-size: 0.9rem;
            }
        }
 