/* Projects Section Styling */
        .projects-section {
            background-color: #ffffff;
            padding: 80px 0;
            position: relative;
        }

        .projects-card {
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border-radius: 10px;
            background-color: #fcfcfc;
            /* border: 1px solid #e6e6e6; */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin: 0.5rem;
        }

        .projects-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }

        .projects-content {
            text-align: center;
            padding: 3rem;
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 600px;
        }

        .projects-icon {
            font-size: 3.5rem;
            color: #8CC63E;
            margin-bottom: 1.5rem;
        }

        .projects-title {
            color: #8CC63E;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .projects-description {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            color: #666;
        }

        .projects-btn {
            background-color: #2B7401;;
            border: 2px solid #2B7401;;
            color: white;
            padding: 16px 40px;
            font-size: 1.3rem;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .projects-btn:hover {
            background-color: #1d5001;
            border-color: #1d5001;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(43, 116, 1, 0.3);
        }

        .projects-btn i {
            transition: transform 0.3s ease;
        }

        .projects-btn:hover i {
            transform: translateX(3px);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .projects-section {
                padding: 70px 0;
            }
            
            .projects-card {
                min-height: 350px;
            }
            
            .projects-content {
                padding: 3rem 2.5rem;
            }
            
            .projects-icon {
                font-size: 3rem;
                margin-bottom: 1.25rem;
            }
            
            .projects-title {
                font-size: 2.25rem;
            }
            
            .projects-description {
                font-size: 1.2rem;
                margin-bottom: 2.25rem;
            }
        }

        @media (max-width: 992px) {
            .projects-section {
                padding: 50px 0;
            }
            
            .projects-card {
                min-height: 300px;
            }
            
            .projects-content {
                padding: 2rem 1.5rem;
            }
            
            .projects-icon {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }
            
            .projects-title {
                font-size: 2rem;
            }
            
            .projects-description {
                font-size: 1.15rem;
                margin-bottom: 2rem;
            }
            
            .projects-btn {
                padding: 14px 32px;
                font-size: 1.15rem;
                border-radius: 8px;
            }
        }

        @media (max-width: 768px) {
            .projects-section {
                padding: 40px 0;
            }
            
            .projects-card {
                min-height: 250px;
            }
            
            .projects-content {
                padding: 1.5rem 1rem;
            }
            
            .projects-icon {
                font-size: 2.25rem;
                margin-bottom: 0.75rem;
            }
            
            .projects-title {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }
            
            .projects-description {
                font-size: 1.1rem;
                margin-bottom: 1.75rem;
            }
            
            .projects-btn {
                padding: 12px 28px;
                font-size: 1.05rem;
                border-radius: 8px;
            }
        }

        @media (max-width: 576px) {
            .projects-section {
                padding: 30px 0;
            }
            
            .projects-card {
                min-height: 220px;
            }
            
            .projects-content {
                padding: 1.25rem 0.75rem;
            }
            
            .projects-icon {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            
            .projects-title {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }
            
            .projects-description {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .projects-btn {
                padding: 10px 24px;
                font-size: 1rem;
                border-radius: 8px;
            }
        }

        /* Demo body styling */
        body {
            background: #eee;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }