/* Gallery Styles */
            .picframe {
                position: relative;
                overflow: hidden;
                border-radius: 0px;
                margin: 0px;
            }

            .picframe img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .picframe:hover img {
                transform: scale(1.05);
            }

            .overlay-v {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.3);
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .picframe:hover .overlay-v {
                opacity: 1;
            }

            /* Owl Carousel Gallery Styles */
            #gallery-carousel-3 .owl-nav {
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                transform: translateY(-50%);
                display: flex;
                justify-content: space-between;
                pointer-events: none;
            }

            #gallery-carousel-3 .owl-nav .owl-prev,
            #gallery-carousel-3 .owl-nav .owl-next {
                background: rgba(0, 0, 0, 0.7) !important;
                border: none !important;
                color: #fff !important;
                font-size: 20px !important;
                width: 40px !important;
                height: 40px !important;
                line-height: 33px !important;
                border-radius: 50% !important;
                text-align: center !important;
                pointer-events: all !important;
                transition: background 0.3s ease !important;
                margin: 0 15px !important;
            }

            #gallery-carousel-3 .owl-nav .owl-prev:hover,
            #gallery-carousel-3 .owl-nav .owl-next:hover {
                background: rgba(245, 160, 0, 0.8) !important;
            }

            #gallery-carousel-3 .owl-dots {
                text-align: center;
                margin-top: 20px;
            }

            #gallery-carousel-3 .owl-dots .owl-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: #ccc;
                margin: 0 5px;
                display: inline-block;
                transition: background 0.3s ease;
            }

            #gallery-carousel-3 .owl-dots .owl-dot.active {
                background: #f5a000;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .picframe img {
                    height: 250px;
                }
                
                #gallery-carousel-3 .owl-nav .owl-prev,
                #gallery-carousel-3 .owl-nav .owl-next {
                    width: 35px !important;
                    height: 35px !important;
                    line-height: 35px !important;
                    font-size: 16px !important;
                    margin: 0 10px !important;
                }
            }