 /* General Styles */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        } */
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            margin-top: 5rem;
        }
        
        h1, h2, h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        /* Header Section */
        .projects-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 60px 40px;
            background: linear-gradient(135deg, #1a2a4c 0%, #2c5aa0 100%);
            color: white;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .projects-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .projects-header h1 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
        }
        
        .projects-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        /* Experience Banner */
        .experience-banner {
            background: linear-gradient(135deg, #d4af37 0%, #f5d547 100%);
            color: #2c3e50;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .experience-banner h2 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        /* Introduction Section */
        .intro-section {
            margin-bottom: 50px;
            padding: 40px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .intro-section p {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .project-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .project-logo {
            height: 180px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .project-logo i {
            font-size: 4rem;
            color: #2c5aa0;
        }
        
        .project-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .project-content h3 {
            color: #2c5aa0;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .project-content p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .supply-details {
            background: #f0f7ff;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 15px;
            border-left: 3px solid #2c5aa0;
        }
        
        .supply-details h4 {
            color: #2c5aa0;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        
        .supply-list {
            font-size: 0.9rem;
            color: #555;
        }
        
        .project-status {
            background: #e8f4ff;
            color: #2c5aa0;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            align-self: flex-start;
        }
        
        /* Stats Section */
        .stats-section {
            margin-bottom: 50px;
            padding: 60px 40px;
            background: linear-gradient(135deg, #1a2a4c 0%, #2c5aa0 100%);
            color: white;
            border-radius: 8px;
            text-align: center;
        }
        
.stats-section h2 {
  color: #fff;
}

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            background: rgba(248, 245, 245, 0.1);
            padding: 30px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.1rem;
            color: white;
        }
        
        /* Supply Categories */
        .categories-section {
            margin-bottom: 50px;
            padding: 40px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .category-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid #2c5aa0;
        }
        
        .category-item i {
            font-size: 2rem;
            color: #2c5aa0;
            margin-bottom: 15px;
        }
        
        .category-item h3 {
            color: #2c5aa0;
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 40px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .cta-section h2 {
            color: #2c5aa0;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .contact-btn {
            display: inline-block;
            background: #2c5aa0;
            color: white;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid, .categories-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 20px 15px;
            }
            
            .projects-header, .intro-section, .stats-section, .categories-section, .cta-section {
                padding: 30px 20px;
            }
            
            .projects-header h1 {
                font-size: 2.2rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .project-logo {
                height: 150px;
            }
            
            .project-logo i {
                font-size: 3rem;
            }
        }