
        html {
            scroll-behavior: smooth;
        }

        .gallery-img {
            transition: transform 0.4s ease;
            cursor: pointer;
        }

        .gallery-img:hover {
            transform: scale(1.1);
        }
        
        /* Memperbaiki jarak scroll untuk semua section ber-ID */
        section[id] {
            scroll-margin-top: 90px;
        }
        .transition-up {
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent !important;
        }
        .transition-up:hover {
            transform: translateY(-10px);
            border-bottom: 3px solid #006699 !important;
        }

        .gallery-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 1 / 1;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-container:hover .gallery-img {
            transform: scale(1.1); /* Gambar tetap membesar sedikit saat disentuh */
        }

        section[id] {
            scroll-margin-top: 90px;
        }
        
