/* Your provided CSS */
        .portfolio-style01 .portfolio-box {
            position: relative;
            overflow: hidden;
        }
        .portfolio-style01 .portfolio-box .portfolio-img {
            overflow: hidden;
            display: block;
            position: relative;
            border-radius: 10px;
        }
        .portfolio-style01 .portfolio-box .portfolio-img img {
            position: relative;
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-filter: saturate(100%);
            filter: saturate(100%);
            -webkit-transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
            transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
            border-radius: 10px;
            width: 100%;
            height: auto;
        }
        .portfolio-style01 .portfolio-box:hover .portfolio-img img {
            -webkit-filter: saturate(120%);
            filter: saturate(120%);
            -webkit-transform: scale(1.1) rotate(2deg);
            transform: scale(1.1) rotate(2deg);
            border-radius: 10px;
        }
        .portfolio-style01 .portfolio-box .portfolio-text {
			position: absolute;
			left: -20px;
			bottom: 0;
			padding: 40px 40px 30px 50px;
			z-index: 3;
			max-width: 280px;
			min-height: 246px;
			opacity: 0;
			visibility: hidden;
			-webkit-transition: all .3s ease;
			transition: all .3s ease;
			text-align: left;
		}
		.portfolio-style01 .portfolio-box .portfolio-text h4 a {
			color: #fff;
			text-decoration: none;
			font-weight: 700;
		}
        p.portfolio-subtext {
			font-size: 14px;
			color: #fff;
			margin-top: 5px;
			z-index: 100;
			position: relative;
		}
        .portfolio-style01 .portfolio-box .portfolio-text h4 a:hover {
            color: #191919;
        }
        .portfolio-style01 .portfolio-box:hover .portfolio-text {
            opacity: 1;
            left: 0;
            visibility: visible;
        }
        .portfolio-style01 .portfolio-box .portfolio-text:before {
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;
            left: 0;
            content: "";
            opacity: .9;
            border-radius: 0 10px 0 0;
            background-color: #e59544;
        }
        .portfolio-style01 .portfolio-box .portfolio-text a i {
            position: relative;
            display: block;
            height: 48px;
            width: 48px;
            font-size: 16px;
            color: #fff;
            background-color: #191919;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 35px;
            opacity: 0;
            -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }
        .portfolio-style01 .portfolio-box:hover .portfolio-text span,
        .portfolio-style01 .portfolio-box:hover .portfolio-text h4,
        .portfolio-style01 .portfolio-box:hover .portfolio-text a i {
            opacity: 1;
            -webkit-transform: translate(0);
            transform: translate(0);
            -webkit-transition-delay: .3s;
            transition-delay: .3s;
        }
        .portfolio-style01 .portfolio-box .portfolio-text span {
            display: block;
            position: relative;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: .05em;
            color: #191919;
            text-transform: uppercase;
            margin-bottom: 2px;
            opacity: 0;
            -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }
        .portfolio-style01 .portfolio-box .portfolio-text h4 {
            color: #191919;
            margin-bottom: 0;
            opacity: 0;
            -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }
		/* Keep nav inside the carousel container */
		.portfolio-carousel-one .owl-nav {
			position: absolute;
			top: 50%;
			left: 0;
			width: 100%;
			pointer-events: none; /* allows clicks only on buttons */
			z-index: 10;
		}

		/* Arrow buttons styling */
		.portfolio-carousel-one .owl-nav button {
			background: rgba(0, 0, 0, 0.6);
			border-radius: 50%;
			width: 40px;
			height: 40px;
			transform: translateY(-50%);
			border: none;
			pointer-events: auto; /* enable button clicks */
		}

		/* Left arrow inside carousel */
		.portfolio-carousel-one .owl-nav button.owl-prev {
			position: relative;
			right: -46%;
		}

		.portfolio-carousel-one .owl-nav button.owl-next {
			position: relative;
			right: -46%;
		}

		/* Icon styling */
		.portfolio-carousel-one .owl-nav i {
			font-size: 20px;
			line-height: 40px;
		}


        @media screen and (max-width: 1399px) {
            .portfolio-style01 .portfolio-box .portfolio-text {
                max-width: 255px;
                min-height: 215px;
                padding: 33px 30px 20px 31px;
            }
            .portfolio-style01 .portfolio-box .portfolio-text a i {
                margin-bottom: 24px;
            }
        }
        @media screen and (max-width: 991px) {
            .portfolio-style01 .portfolio-box .portfolio-text {
                max-width: 235px;
                min-height: 195px;
            }
            .portfolio-style01 .portfolio-box .portfolio-text a i {
                height: 40px;
                width: 40px;
                font-size: 13px;
                margin-bottom: 17px;
            }
        }
        @media screen and (max-width: 767px) {
            .portfolio-style01 .portfolio-box .portfolio-text {
                max-width: 202px;
                min-height: 185px;
            }
        }

        /* Basic Owl Carousel Styles */
        .owl-carousel .owl-item img {
            width: 100%;
            height: auto;
        }
        .owl-carousel .owl-stage-outer {
            overflow: hidden;
        }
        .owl-carousel .owl-stage {
            display: flex;
        }                
