 * {
            scroll-behavior: smooth;
        }

       

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            background: linear-gradient(180deg, #F9FAFB 0%, #F3F4F6 100%);
            padding: 80px 0;
            position: relative;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out;
        }

        .gallery-header h2 {
            font-size: clamp(2rem, 8vw, 3.5rem);
            font-weight: 900;
            color: #0E7A4F;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .gallery-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #10B981, transparent);
            border-radius: 2px;
        }

        .gallery-header p {
            font-size: 1.1rem;
            color: #6B7280;
            margin-top: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== GALLERY CARD STYLES ===== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .gallery-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .gallery-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0E7A4F, #10B981);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease-out;
            z-index: 10;
        }

        .gallery-card:hover::before {
            transform: scaleX(1);
        }

        .gallery-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(14, 122, 79, 0.15), 0 10px 20px rgba(14, 122, 79, 0.1);
        }

        .image-placeholder {
            position: relative;
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6B7280;
            font-weight: 600;
            overflow: hidden;
        }

        .image-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(14, 122, 79, 0) 0%, rgba(14, 122, 79, 0.1) 100%);
            pointer-events: none;
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .gallery-card:hover .image-placeholder img {
            transform: scale(1.08);
        }

        .card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0E7A4F;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .gallery-card:hover .card-title {
            color: #10B981;
        }

        .card-description {
            color: #6B7280;
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        .card-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            padding: 8px 12px;
            background: #D1FAE5;
            color: #0E7A4F;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            width: fit-content;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 80px;
                padding-bottom: 60px;
                min-height: 400px;
            }

            .gallery-grid {
                gap: 20px;
            }

            .gallery-section {
                padding: 60px 0;
            }
        }