
        /* Top + Bottom border animation */
        .images_slider .item::before {
            content: "";
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-top-color: #ffcc00;
            border-bottom-color: #ffcc00;
            transform: scaleX(0);
            transition: transform 0.4s ease;
            pointer-events: none;
        }

        /* Left + Right border animation */
        .images_slider .item::after {
            content: "";
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-left-color: #ffcc00;
            border-right-color: #ffcc00;
            transform: scaleY(0);
            transition: transform 0.4s ease 0.2s;
            /* delay for smooth effect */
            pointer-events: none;
        }

        /* Hover effect */
        .images_slider .item:hover::before {
            transform: scaleX(1);
        }

        .images_slider .item:hover::after {
            transform: scaleY(1);
        }

        /* Your existing hover shadow */
        .images_slider .item:hover {
            background: #fff;
            box-shadow: #32325d40 0px 13px 27px -5px,
                #ffcc00 0px 8px 16px -8px;
        }

        /*======== card css End here======== */
        .images_slider {
            padding: 50px 0 80px;
        }

        .images_slider .item {
            position: relative;
            overflow: hidden;
            /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
            margin-bottom: 0px;
        }

        .images_slider .item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .images_slider .plus-icon img {
            width: 28px;
            height: auto;
        }

        /* Hover Overlay */
        .images_slider .hover-box {
            position: absolute;
            inset: 0;
            background: #ffcc0029;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: .2s;
        }

        .images_slider .item:hover .hover-box {
            opacity: 1;
        }

        /* Content */
        .images_slider .slide-info {
            padding: 12px;
            background: #fff;
        }

        .images_slider .slide-title {
            font-weight: bold;
            margin: 0 0 5px;
            font-family: "Poppins", Sans-serif;
            font-size: 14px;
        }

        .images_slider .slide-text {
            margin: 0;
            color: #555;
            font-size: 14px;
        }

        .images_slider .owl-nav button {
            background: #ffe109 !important;
            width: 35px;
            height: 35px;
            margin: 0 !important;
            transition: all ease-in-out 300ms;
        }

        .images_slider .owl-nav button:hover {
            background-color:#ff6900  !important;
        }

        .images_slider .owl-nav button img {
            transition: all ease-in-out 300ms;
        }

        .images_slider .owl-nav button:hover img {
            filter: invert(1);
        }

        .images_slider .owl-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .images_slider .owl-nav button img {
            position: relative;
            top: 0px;
        }
 