/* =========================
           WHITE PAINTING PORTFOLIO SLIDER
        ========================= */
        .portfolio-section {
            padding: 90px 0 100px;
            background: #fff;
            overflow: hidden;
        }

        .portfolio-hero{
            background-color: blueviolet;
            color: white;
            padding: 20px;
        }

        

        .portfolio-heading {
            max-width: 900px;
            margin: 0 auto 45px;
            text-align: center;
        }

        .portfolio-heading span {
            color: #777;
            font-weight: 700;
            letter-spacing: 4px;
            font-size: 13px;
        }

        .portfolio-heading h2 {
            color: #17121F;
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 800;
            margin: 10px 0 12px;
        }

        .portfolio-heading p {
            display: none;
        }

        .portfolio-color-line {
            width: 72px;
            height: 4px;
            margin: 18px auto 0;
            border-radius: 20px;
            background: #D6A64A;
        }

        .portfolio-slider {
            position: relative;
            width: 60%;
        }

        #portfolioNext{
            position: relative;
            left: 155%;
            bottom: 175px;
        }

        .portfolio-track {
            display: flex;
            align-items: center;
            gap: 18px;
            transition: transform .55s cubic-bezier(.22,.61,.36,1);
            will-change: transform;
        }

        .portfolio-slide {
            flex: 0 0 78%;
            height: 430px;
            overflow: hidden;
            border-radius: 18px;
            background: #f3f3f3;
            box-shadow: 0 12px 35px rgba(0,0,0,.10);
        }

        .portfolio-slide img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .portfolio-slide:hover img {
            transform: scale(1.035);
        }

        .portfolio-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 54px;
            height: 54px;
            border: 0;
            border-radius: 50%;
            background: #fff;
            color: #17121F;
            box-shadow: 0 8px 25px rgba(0,0,0,.16);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .25s ease;
        }

        .portfolio-arrow:hover {
            transform: translateY(-50%) scale(1.06);
            background: #17121F;
            color: #fff;
        }

        .portfolio-prev { left: 18px; }
        .portfolio-next { right: 18px;}

        .portfolio-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 9px;
            margin-top: 28px;
        }

        .portfolio-dot {
            width: 9px;
            height: 9px;
            padding: 0;
            border: 0;
            border-radius: 50%;
            background: #c9cdd2;
            cursor: pointer;
            transition: .25s ease;
        }

        .portfolio-dot.active {
            width: 26px;
            border-radius: 20px;
            background: #D6A64A;
        }

        @media (max-width: 991px) {
            .portfolio-section {
                padding: 70px 0 80px;
            }

            .portfolio-slide {
                flex-basis: 86%;
                height: 380px;
            }

            .portfolio-arrow {
                width: 48px;
                height: 48px;
            }
        }

        @media (max-width: 576px) {
            .portfolio-section {
                padding: 55px 0 65px;
            }

             #portfolioNext{
            position: relative;
            left: 150%;
            bottom: 100px;
        }

            .portfolio-heading {
                margin-bottom: 30px;
            }

            .portfolio-heading h2 {
                font-size: 38px;
            }

            .portfolio-heading span {
                font-size: 11px;
                letter-spacing: 3px;
            }

            .portfolio-slide {
                flex-basis: 88%;
                height: 245px;
                border-radius: 14px;
            }

            .portfolio-track {
                gap: 12px;
            }

            .portfolio-arrow {
                width: 42px;
                height: 42px;
                font-size: 14px;
            }

            .portfolio-prev { left: 8px; }
            .portfolio-next { right: 8px; }
        }