/* Gallery Category Cards */
        .gallery-card {
            position: relative;
            height: 240px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(30, 81, 40, 0.15);
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 81, 40, 0.25);
        }

        /* Background Image */
        .gallery-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover .gallery-card-bg {
            transform: scale(1.1);
        }

        /* Overlay */
        .gallery-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
            transition: background 0.3s ease;
        }

        .gallery-card:hover .gallery-card-overlay {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%);
        }

        /* Content */
        .gallery-card-content {
            position: relative;
            height: 100%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
            z-index: 2;
        }

        .gallery-category-badge {
            display: none;
        }

        .image-count {
            display: none;
        }

        .gallery-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .gallery-card-description {
            font-size: 0.9rem;
            margin-bottom: 20px;
            opacity: 0.95;
            line-height: 1.4;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* View All Button */
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: #1e5128;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            width: fit-content;
        }

        .gallery-card:hover .view-all-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .view-all-btn:hover {
            background: #1e5128;
            color: white;
            transform: translateY(0) scale(1.05);
        }

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

        .view-all-btn:hover i {
            transform: translateX(5px);
        }

        /* Image Count Badge */
        .image-count {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .gallery-card {
                height: 240px;
            }

            .gallery-card-title {
                font-size: 1.3rem;
            }

            .gallery-card-description {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .gallery-card {
                height: 240px;
            }

            .gallery-card-content {
                padding: 20px;
            }

            .gallery-card-title {
                font-size: 1.2rem;
            }
        }