.instagram-feed .item {
    padding: 0px; /* Spacing between items */
}

.instagram-feed .owl-stage {
    display: flex;
    align-items: center;
}

.instagram-feed .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.instagram-feed .owl-prev,
.instagram-feed .owl-next {
    pointer-events: auto;
    background: rgba(0,0,0,0.5) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px !important;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.instagram-feed .owl-prev:hover,
.instagram-feed .owl-next:hover {
    background: rgba(251, 191, 36, 0.8) !important;
}

.instagram-feed .owl-dots {
    margin-top: 0px;
}

.instagram-feed .owl-dot span {
    background: #4B5563 !important;
}

.instagram-feed .owl-dot.active span {
    background: #F59E0B !important;
}

/* Animated Gradient Background */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.nav-gradient-bg {
    background: linear-gradient(
        45deg,
        rgba(253, 161, 3, 0.85) 0%,
        rgba(190, 45, 21, 0.85) 20%,
        rgba(253, 161, 3, 0.85) 40%,
        rgba(190, 45, 21, 0.85) 60%,
        rgba(253, 161, 3, 0.85) 80%,
        rgba(190, 45, 21, 0.85) 100%
    );
    background-size: 300% 300%;
    animation: gradientAnimation 15s ease infinite;
    transition: all 0.5s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
