            /* Bingkai Gambar */
            .border-frame-huffaz {
                border: 10px solid purple;
                padding: 10px;
                background: white;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                border-radius: 15px;
                width: 100%;
                height: auto;
                transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
            }

            /* Hover Effect */
            .image-container:hover .border-frame-huffaz {
                transform: scale(1.05) rotate(2deg);
                box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
            }

            /* Slide-in Animation */
            [data-aos="fade-left"] {
                transform: translateX(-50px);
                opacity: 0;
                transition: all 0.8s ease-out;
            }
            [data-aos="fade-right"] {
                transform: translateX(50px);
                opacity: 0;
                transition: all 0.8s ease-out;
            }
            [data-aos="fade-left"].aos-animate,
            [data-aos="fade-right"].aos-animate {
                transform: translateX(0);
                opacity: 1;
            }

            @keyframes pulseTitle {
                from {
                    transform: scale(1);
                    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
                }
                to {
                    transform: scale(1.05);
                    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
                }
            }