 /* Portfolio Carousel Container */
.portfolio-carousel {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

/* Portfolio Track */
.portfolio-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px; /* Adjust as needed */
}

/* Portfolio Slide */
.portfolio-slide {
    flex: 0 0 100%;
    height: 100%;
    width: auto;
    box-sizing: border-box;
}

/* Portfolio First (Your image container) */
.portfoliofirst {
    width: 100%;
    opacity: 1;
    border-radius: 24px;
    box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portfoliofirst:hover {
    transform: scale(1.01);
}

.portfoliofirst img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
    border-radius: 24px;
    transition: all 0.5s ease;
}

/* Portfolio Carousel Buttons */
.portfolio-carousel-btn {
    display: NONE;
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px); */
}

.portfolio-carousel-btn:hover {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-carousel-btn svg {
    width: 20px;
    height: 20px;
}

.portfolio-prev-btn {
    left: 20px;
}

.portfolio-next-btn {
    right: 20px;
}

/* Portfolio Dots */
.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

.portfolio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
   }
    
    .portfolio-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .portfolio-prev-btn {
        left: 10px;
    }
    
    .portfolio-next-btn {
        right: 10px;
    }
 
@media (max-width: 480px) {
    
    
}