  .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .carousel-overlay {
            background: rgba(0, 0, 0, 0.2);
            height: 100%;
            width: 100%;
        }

        .carousel-caption {
            bottom: 50%;
            transform: translateY(50%);
        }

        .project-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-indicators {
            bottom: 30px;
        }

        .carousel-indicators [data-bs-target] {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            margin: 0 8px;
        }

        @media (max-width: 768px) {
            .carousel-control-prev {
                left: 15px;
            }
            .carousel-control-next {
                right: 15px;
            }
        }
       .product-card {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 116, 71, 0.6);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
